function OpenPic(fname,w,h,tname) {
  var wtext="<IMG SRC='Pics/"+fname+"' WIDTH="+w+" HEIGHT="+h+" VSPACE=0>"
  myWin= open("", "displayWindow", 
    "status=no,toolbar=no,menubar=no,scrollbars=no,width="+eval(w+30)+",height="+eval(h+90));
  myWin.document.open();
  myWin.document.write("<html><head><title>"+tname);
  myWin.document.write("</title></head><body>");
  myWin.document.write("<center>");
  myWin.document.write("<P><B>"+tname+"</B></P>");  
  myWin.document.write("<table cellspacing=0 border=0><TR><TD>");
  myWin.document.write(wtext);
  myWin.document.write("</TD></TR></table>");	  
  myWin.document.write("</center>");
  myWin.document.write("</body></html>");
  myWin.document.close(); 
}


