function open_product(strPage,strScroll){
  	myWindow = window.open(strPage,"myWindow","resizable=yes,scrollbars=yes,height=625,width=900,top=15,left=15");
};

function open_image(strTitle, strImage, intWidth, intHeight){
  	MyWindow = window.open("", "MyWindow", 
	"toolbar=no,location=no,directories=no,status=no," +
	"menubar=no,scrollbars=yes,resizable=no," + 
		"width=550,height=500");
	str = "<HTML>" +
	"<HEAD>" +
	"<TITLE>Catalogue</TITLE>" +
	"</HEAD>" +
	"<BODY>" +
	"<IMG SRC="+strImage+" ALIGN=TOP>" +
	"<BR><ALIGN=CENTER><A HREF=javascript:window.close()>Close Window</A>" +
	"</BODY>" +
	"</HTML>"
	self.MyWindow.document.open();
	self.MyWindow.document.write(str);
	self.MyWindow.document.close();
};
	
function JumpTo (value) {
	if (value != "choose") {
		window.location="/catalogue/productList.php?catID="+value;
	}
};