 var vNewWin=null;
 
 function PopUp(pClose,pUrl,pWinName,pWidth,pHeight)
  { vClose = pClose;
    vUrl = pUrl;
    vWinName = pWinName;  
    vWidth = pWidth;
    vHeight = pHeight;
   
    vWinProp = "width=" + vWidth + ",height=" + vHeight + ",top=0,left=0";
    vWinProp = vWinProp + ",resizable=0,toolbar=0,menubar=0,scrollbars=0,location=0,copyhistory=0,directories=0";

    if(vClose == 1) { window.close(); vClose == 0; }
    
    vNewWin = window.open(vUrl,vWinName,vWinProp).focus();

    return;
  }


 function PopUpScr(pClose,pUrl,pWinName,pWidth,pHeight)
  { vClose = pClose;
    vUrl = pUrl;
    vWinName = pWinName;  
    vWidth = pWidth;
    vHeight = pHeight;
   
    vWinProp = "width=" + vWidth + ",height=" + vHeight + ",top=0,left=0";
    vWinProp = vWinProp + ",resizable=0,toolbar=0,menubar=0,scrollbars=1,location=0,copyhistory=0,directories=0";

    if(vClose == 1) { window.close(); vClose == 0; }
    
    vNewWin = window.open(vUrl,vWinName,vWinProp).focus();

    return;
  }