// JavaScript Document

var popUpWin=0;
var popUpWin2=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,scrollbar=yes, scrollbars=1,resizable=yes,copyhistory=yes,width=250,height=500,left=50, top=200,screenX='+left+',screenY='+top+'');
}


function popUpWindow2(URLStr, left, top, width, height)
{
  if(popUpWin2)
  {
    //if(!popUpWin2.closed) popUpWin2.close();
  }
  popUpWin2 = open(URLStr, 'popUpWin2', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=yes,scrollbars=1,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
