// JavaScript Document
var popUpWin=0;
function popUpWindow(URLStr,Desc, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = window.open('', 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.document.write('<html>\n<head>\n<title>',Desc,'</title>\n</head>\n<body style="margin: 0px;" bgcolor="#FFFFFF">\n<img src="',URLStr,'" width="',width,'" height="',height,'" alt="',Desc,'">\n</body>\n</html>\n');
}
