<!-- 
//Open a product listing on pricegrabber
function openPriceGrabber( itemNumber )
{
	var pricegrabberurl = 'http://zyxel.pricegrabber.com/search_getprod.php?vcode=zyx&partnum=' + itemNumber;
	window.open( pricegrabberurl, '', 'height=500,width=840,innerHeight=450,innerWidth=550,menubar=no,status=no,toolbar=yes,resizable=yes,scrollbars=yes');
}
//var url = "http://" + partner + ".pricegrabber.com/search_getprod.php?vcode=" + vcode + "&partnum=" + partnum;
//	var features = "height="+document.pg_popup_height+",width="+document.pg_popup_width+",innerHeight=450,innerWidth=550,menubar=no,status=no,toolbar=no,resizable=yes,scrollbars=yes";
//	window.open( url, "", features );
-->