<!-- popup window code
function PopWindow(winURL) {
var winWidth = screen.width / 2;
var winHeight = screen.height / 2;
winFeatures = 'height='+winHeight+',width='+winWidth+',top=50,left=10,scrollbars=yes,resizable=yes'
win = window.open(winURL, 'Info', winFeatures)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
