function show_photo(photo, name){
   document.write("<table cellpadding=0 cellspacing=0>");
   document.write("<tr height=3><td><img src='images/sh_tl.gif' width=3 height=3><td background='images/sh_t.gif'><img src='images/space.gif' width=1 height=1><td><img src='images/sh_tr.gif' width=5 height=3>");
   document.write("<tr><td background='images/sh_l.gif' width=3><img src='images/space.gif' width=1 height=1><td>");
   document.write(photo);
   document.write("<td background='images/sh_r.gif' width=5><img src='images/space.gif' width=1 height=1>");
   document.write("<tr height=5><td><img src='images/sh_bl.gif' width=3 height=5><td background='images/sh_b.gif'><img src='images/space.gif' width=1 height=1><td><img src='images/sh_br.gif' width=5 height=5>");
   if (name != '') {
      document.write("<tr><td colspan=3 align=center>");
      document.write(name);
   }
   document.write("</table>");
}