function openWindow(sURL){ var iWidth = 700 ; var iHeight = 500 ; var szFeatures = "" ; szFeatures = "scrollbars=yes,resizable=yes,status=yes,menubar=no,width=" + iWidth + ",height=" + iHeight + ",top=0,left=0" window.open(sURL,"",szFeatures) } 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,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,status=no,menubar=no,width=" + iWidth*w + ",height=" + iHeight*h + ",top=0,left=0" window.open(sURL,"",szFeatures) } function openNewWindowAcc(sURL,w,h){ var iWidth = 0 ; var iHeight = 0 ; iWidth=window.screen.availWidth-10; iHeight=window.screen.availHeight-50; var szFeatures = "" ; szFeatures = "resizable=yes,status=yes,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); } function openNewLTWindow(sURL,w,h,t,l){ var iWidth = 0 ; var iHeight = 0 ; iWidth=window.screen.availWidth-10; iHeight=window.screen.availHeight-50; var szFeatures = "" ; szFeatures = "resizable=no,status=yes,edge=Sunken,scrollbars=yes,center=yes,help=no,menubar=no,width=" + iWidth*w + ",height=" + iHeight*h + ",top=" +t + ",left=" + l window.open(sURL,"",szFeatures) } function openNewLTWindowNoStatus(sURL,w,h,t,l){ var iWidth = 0 ; var iHeight = 0 ; iWidth=window.screen.availWidth-10; iHeight=window.screen.availHeight-50; var szFeatures = "" ; szFeatures = "resizable=no,status=no,edge=Sunken,scrollbars=yes,center=yes,help=no,menubar=no,width=" + iWidth*w + ",height=" + iHeight*h + ",top="+ t +",left="+l window.open(sURL,"",szFeatures) }