
var firstTime;

function InitGlobal ()
{
   firstTime = true
}

function ShowPhoto(photoName, width, height)
{
 

  var title = photoName;
  var left = (screen.width - width - 50);
  var top =  (screen.height/2) - height/2;
 
  var styleStr = '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;
  var msgWindow ;
  if (firstTime==false)
  {
    msgWindow = window.open("","photoWindow",styleStr);
    msgWindow.window.close();
  }
  else
  {
    firstTime = false;
  }
  msgWindow = window.open("","photoWindow",styleStr);
  var head = '<head><title>'+title+'</title><style type="text/css"><!--body {margin-left: 0px;margin-top: 0px;}--></style></head>';
  var body = '<center><img src="'+photoName+'" width='+width+' height='+height+' border="0"><br><p>';
  msgWindow.document.write(head + body);
  msgWindow.document.close();
  msgWindow.focus();
}
