function popup(title,popupname,name,height,width)
{
  var h=height+150;
  var w=width+50;
  wind=window.open("",popupname,"height="+h+",width="+w+",scrollbars=no,resize=no");
  d=wind.document;
  d.open();
  d.writeln('<html><body border=0 bgcolor=white>');
  d.writeln('<center><h2><font color=red face="Comic Sans Ms">'+title+'</h2>');
  d.writeln('<img src="'+name+'"'+' height='+height+' width='+width+'>');
  d.writeln('<center><form><input type=submit value="Close Window" onClick="self.close();"></form></center>');
  d.writeln('</body></html>');
  d.close();
  wind.focus();
  return false;
}

