function newWindow(location,scroll,x,y){ siteWindow = window.open(location,'Popup','width='+x+',height='+y+',toolbar=no,resizable=yes,scrollbars='+scroll+',menubar=no,status=yes') siteWindow.focus() } function newWindowNamed(location,name,scroll,x,y){ siteWindow = window.open(location,name,'width='+x+',height='+y+',toolbar=no,resizable=yes,scrollbars='+scroll+',menubar=no,status=yes') siteWindow.focus() }