function PopupThumbnail(url)
{
 var newwnd = window.open("", null, "scrollbars=yes, location=no, menubar=yes, status=no, toolbar=no, resizable=yes, width=480, height=640");
 
 newwnd.document.writeln("<html><head><title>Printable View</title></head><body><center>");
 newwnd.document.writeln("<font size='-2'>Just click File->Print above to print this form</font><br>");
 newwnd.document.writeln("<img width='85%' src='" + url + "'>");
 newwnd.document.writeln("</center></body></html>");
}
