// JavaScript Document
var popUpWin=0;
function ScreenShotWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  
  var myWidth = document.documentElement.clientWidth;
  var myHeight = document.documentElement.clientHeight;
  left = myWidth/2;
  top = myHeight/2;
  
  left = 0;
  top = 0;
  popUpWin = open(URLStr, 'SITE_TITLE', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}