function openimage(url,width,height,comment) {
	var newheight;
	var newwidth;

   newheight= height+100;
   newwidth = width+25;
   winStats='toolbar=no,location=no,directories=no,status=no,menubar=no,'
   winStats += 'scrollbars=no,resizable=no,width='
   winStats += newwidth
   winStats += ',height='
   winStats += newheight

   newWindow = window.open ("","msgWindow",winStats)
   newWindow.document.write ("<BODY background=http://ppi.searchy.net/back.gif bgColor='white' text='black' leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>")
   newWindow.document.write ("<center><img src=\"",url,"\" style=\"margin: 10px;border-style: solid;border-width:1px;\"><b>")
   newWindow.document.write (comment);
   newWindow.document.write ("</b></center><br><FORM><CENTER>")
   newWindow.document.write ("<INPUT type='button' value='Close image' onClick = 'self.close()'>")
   newWindow.document.write ("</CENTER></FORM>")

}
