// JavaScript Document
//Function for popup window
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }  
  windowFeatures = 'width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0'
  popUpWin = window.open( URLStr, 'popUpWin', windowFeatures ) ; 
}
function popUpWindow1(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }  
  windowFeatures = 'width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1'
  popUpWin = window.open( URLStr, 'popUpWin', windowFeatures ) ; 
}