// JavaScript Document
var popUpWin=0;
function popUpSpecial(URLStr)
{
  left = 100;
  width = 670;
  height = 450;
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = 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='+10+',screenX='+left+',screenY='+10+'');
}

