function popup(url) {
if (document.all) 
{var xMax = screen.width, yMax = screen.height} 
else if (document.layers) {
var xMax = window.outerWidth, yMax = window.outerHeight
} else {
var xMax = 640, yMax=480
}; 

var xOffset = (xMax - 466)/2, yOffset = (yMax - 350)/2;

ProductWindow = window.open(url,'_blank','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=466,height=520,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
ProductWindow.focus();
}