function show_picture (image)
{
width = 590;
height = 500;
picture = window.open('image','name','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,top=25,left=25,width=' + width + ',height=' + height + '');

picture.document.writeln ("<html><head>");

picture.document.writeln ("<title>Acme Slate</title>");

picture.document.writeln ("</head>");

picture.document.writeln ("<body bgcolor=#000000 topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0>");

picture.document.writeln ("<table width=100% height=100% border=0>");

picture.document.writeln ("<tr height=100%>");

picture.document.writeln ("<td width=100% align=center valign=middle>");
picture.document.writeln ("<table width=450 border=0 cellpadding=5>");

picture.document.writeln ("<tr>");
picture.document.writeln ("<td align=center valign=top bgcolor=#000000>");
picture.document.writeln ("<a href='javascript:window.close()'><img src=" + image + " name=Photo border=0 alt='Close Window'></a>");
picture.document.writeln ("</td>");

picture.document.writeln ("</tr>");

picture.document.writeln ("</table>");

picture.document.writeln ("</td>");

picture.document.writeln ("</tr>");

picture.document.writeln ("</table>");

picture.document.writeln ("</body>");

picture.document.writeln ("</html>");
}