var popUpWinV=0;

function popUpWindowv(URLStr, left, top, width, height)
{
  if(popUpWinV)
  {
    if(!popUpWinV.closed) popUpWinV.close();
  }
  popUpWinV = open(URLStr, 'popUpWin','toolbar=yes,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+'');
}
