

function goHyper(hyperlink,target){
	var hyperlink_text = hyperlink.toLowerCase;
	var jpeg = 0;
	var gif = 0;
	
	if(hyperlink != '0') 
		if(hyperlink.substring("http://")){
			if(target == "YES"){
				if(hyperlink.indexOf(".jpg") > 0 ) jpeg = 1;
				if(hyperlink.indexOf(".jpeg") > 0 ) jpeg = 1;
				if(hyperlink.indexOf(".gif") > 0 ) gif = 1;
				
				if(jpeg || gif)
					window.open("_image.cfm?makeclose=1&image="+hyperlink,"","status=0,location=0,menubar=0,width=600,height=600,resizable=1,scrollbars=1");
				else{
					if(hyperlink.indexOf("javascript:") > 0)
						location.href=hyperlink;
					else
						window.open(hyperlink);
				}
			}
			else
				location.href=hyperlink;
		}
}


function gotoPage(id){
	if(id != ""){top.location.href="./?pageid="+id;}
}

theURL = document.location + '';
function buyThis(id){
	location.href = "https://secure.handzon.com/itechapp/admin/checkout/?storeid=1232&prodid=" + id + "&storereferer=" + theURL;
}

function HO_showCart(){
	document.HO_showCart.submit();
}


