// JavaScript Document
//This document PopUps a window

//Variables: URLStr, left, top, width, height 
var popUpWin=0;
function popUpWindow(URLStr, scroll, resize, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'PopUpWindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll+',resizable='+resize+',copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function popUpWindowHelp(URLStr)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open('Help.aspx#'+URLStr+'', 'HelpPopUpWindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=350,height=250,left=10, top=50,screenX=10,screenY=50');
}
