<!--
function picture(picgoal,picname) {
  PicWin=window.open("",picname,'status=0,scrollbars=0,resizable=0,width=240,height=360,screenX=50,screenY=50,top=50,left=50');
  PicWin.document.open();
  PicWin.document.writeln('<html>');
  PicWin.document.writeln('<head>');
  PicWin.document.writeln('<title>Nappytabs Alternate Image</title>');
  PicWin.document.writeln('</head>');
  PicWin.document.writeln('<body style="background: url('+picgoal+') no-repeat 0 0">');
  PicWin.document.writeln('</body>');
  PicWin.document.writeln('</html>');
  PicWin.document.close();
}
-->
