// Script for showing large images in a small browser window
var ImgWin;
function ShowImgWin(ImgSrc,PgeTtl){
 ImgWin=window.open("","ImgWin","status,height=440,width=540,scrollbars=yes");
 if(!ImgWin.opener){
  ImgWin.opener=window;
 }
 WriteImgWin(ImgSrc,PgeTtl);
 ImgWin.focus();
}
function WriteImgWin(ImgSrc,PgeTtl){
 txt="<html><head><title>"+PgeTtl+"</title></head>";
 txt=txt+"<body bgcolor=white leftmargin=0 topmargin=0 offset=0 marginheight=0 marginwidth=0>";
 txt=txt+"<table width=100% height=100%><tr><td align=center valign=middle>";
 txt=txt+ImgSrc;
 txt=txt+"</td></tr><tr><td align=center><a href=javascript:close()><font size=2 face=Verdana, Arial, Helvetica, sans-serif>Close Window</font></a></td></tr></table>";
 txt=txt+"</body></html>";
 ImgWin.document.write(txt);
 ImgWin.document.close();
}