function showpics(picture)
{
  var v = window.open('', 'title', 'width=309 , height=480 , toolbar=no , resizable=no, menubar=no, adress=no');
  v.document.write('<html>');
  v.document.write('<head>');
  v.document.write('<title>tele-disk</title>');
  v.document.write('</head>');
  v.document.write('<body bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" OnLoad=\"focus();\">');
  v.document.write('<center>');
  v.document.write('<img src=');
  v.document.write(picture);
  v.document.write('>');
  v.document.write('</td></tr>');
  v.document.write('<tr><td align=\"center\">');
  v.document.write('<br><span class="imagetitle"></span>');
  v.document.write('</td></tr>');
  v.document.write('</table>');
  v.document.write('<br><br>');
  v.document.write('</center>');
  v.document.write('</body>');
  v.document.write('</html>');
  v.document.close();
}

