
<!--

function NewWindow(mypage,showprice) {
	var winl = (screen.width - 700) / 2;
	var wint = (screen.height - 500) / 2;
	var myname = 'name';
	winprops = 'height=500,width=700,top='+wint+',left='+winl+',scrollbars=yes,resizable=0'
	win = window.open('showproduct.php?product='+mypage+'&showprice='+showprice, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

// -->
