<!--
function showit(image) {

title = "Copyright &copy; Puustellin työkylä";
imagewindow = window.open("", "kuvat", "status=1, toolbar=0, menubar=0, width=640, height=640");

imagewindow.document.open();
imagewindow.document.writeln('<html>');
imagewindow.document.writeln('<head>');
imagewindow.document.writeln('  <title>' + title + '</title>');
imagewindow.document.writeln('  <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
imagewindow.document.writeln('</head>');
imagewindow.document.writeln('<body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
imagewindow.document.writeln('<table width=100% height=100% border=0 cellspacing=0 cellpadding=0>');
imagewindow.document.writeln('<tr>');
imagewindow.document.writeln('  <td align="center" valign="center">');
imagewindow.document.writeln('    <table cellspacing=5 cellpadding=5 bgcolor="#D2D2D2">');
imagewindow.document.writeln('    <tr>');
imagewindow.document.writeln('      <td><img src="' + image + '" align=center alt="'+ title +'"></td>');
imagewindow.document.writeln('    </tr>');
imagewindow.document.writeln('    </table>');
imagewindow.document.writeln('  </td>');
imagewindow.document.writeln('</tr>');
imagewindow.document.writeln('</table>');
imagewindow.document.writeln('</body>');
imagewindow.document.writeln('</html>');
imagewindow.document.close();
}
//-->
