/* function openNewWindow(sURL){ var szFeatures = "resizable=yes,scrollbars=yes,status=yes,menubar=no,width=600,height=400,top=50,left=50" window.open(sURL,"",szFeatures) } */ function openNewWindow(sURL){ openNewWindow(sURL, 1, 1); } function openNewWindow(sURL,w,h){ var iWidth = 0 ; var iHeight = 0 ; iWidth=window.screen.availWidth-10; iHeight=window.screen.availHeight-50; var szFeatures = "" ; szFeatures = "resizable=yes,scrollbars=yes,status=yes,menubar=no,width=" + iWidth*w + ",height=" + iHeight*h + ",top=0,left=0" window.open(sURL,"",szFeatures) } function openNewWindowNoStatus(sURL,w,h){ var iWidth = 0 ; var iHeight = 0 ; iWidth=window.screen.availWidth-10; iHeight=window.screen.availHeight-50; var szFeatures = "" ; szFeatures = "resizable=yes,scrollbars=yes,status=no,menubar=no,width=" + iWidth*w + ",height=" + iHeight*h + ",top=0,left=0" window.open(sURL,"",szFeatures) } function closeWindow(){ var str=''; if(!document.getElementById("clow")) document.body.insertAdjacentHTML("BeforeEnd",str); clow.Click(); openNewWindow("index.aspx",1,1); }