// JavaScript Document

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

var popUpWinX=0;
function popUpWindowX(URLStr, left, top, width, height)
{
  if(popUpWinX)
  {
    if(!popUpWinX.closed) popUpWinX.close();
  }
  popUpWinX = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes, resizable=yes, copyhistory=yes, width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

var popUpWinX2=0;
function popUpWindowX2(URLStr, left, top, width, height)
{
  if(popUpWinX2)
  {
    if(!popUpWinX2.closed) popUpWinX2.close();
  }
  popUpWinX2 = open(URLStr, 'popUpWin2', 'toolbar=1,location=0,directories=0,status=1,menubar=1,scrollbars=1, resizable=1, copyhistory=yes, width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}