<!--

window.name="Products";

var v=parseInt(navigator.appVersion);
isNetscape=navigator.appName.indexOf('Netscape')>=0;
isExplorer=navigator.appName.indexOf('Explorer')>=0;
if(v>=3) self.focus();

function popupWindow(goLocation,ww,wh,scroll) {
positionCode='';
if(v>=4) {
sw  = screen.width;           sh  = screen.height;
wbx = Math.round((sw-ww)/2);  wby = Math.round((sh-wh)/2);
if(isExplorer) positionCode='left='+wbx+',top='+wby+',';
if(isNetscape) positionCode='screenX='+wbx+',screenY='+wby+',';
}

newWindow=window.open('','NCpopup',
'width='+ww+',height='+wh+','+
positionCode+
'toolbar=0,'+
'scrollbars='+scroll+','+
'resizable=0');
if(isNetscape && v>=3) newWindow.focus();

newWindow.document.open();
newWindow.document.writeln("<body bgcolor=#FFFFFF marginwidth=0 marginheight=0 topmargin=0 leftmargin=0><img src="+goLocation+" border=0></body>");
newWindow.document.close();
}
// -->
