<!--

function toggleNav(theid) {
	if (document.getElementById(theid)) {
		if (document.getElementById(theid).style.display == "none") {
			document.getElementById(theid).style.display = "block";
		}else{
			document.getElementById(theid).style.display = "none";
		}
	}
	return false;
}

function enlarge(productid) {
	var fin=window.open("enlarge.asp?ProductID="+productid,'popup_product','toolbar=no,status=no,resizable=no,menubar=no,scrollbar=no,width=540,height=640,left=10,top=10');
	fin.focus();
	return false;
}

-->