
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,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='<object id=clow type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11"><param name="Command" value="CLOSE"></object>'; 
  if(!document.getElementById("clow"))
    document.body.insertAdjacentHTML("BeforeEnd",str); 
  clow.Click();
  openNewWindow("index.aspx",1,1);
}