// JavaScript Document

var popUpWin=0;
function popUpWindow(URLStr,DESCStr)
{
var left =10;
var top = 10;
var width = screen.width - 50;
var height = screen.height -50;
if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open('about:blank', '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+'');
  
popUpWin.document.writeln('<html><head><title>' + DESCStr + '</title></head>');
popUpWin.document.writeln('<body bgcolor="#ffffff"><div align="center"><img src="' + URLStr + '"><br><h2>' + DESCStr + '</h2></div></body></html>');
}
