function picture(picgoal,picname,w,h) {
  var cenl = ((screen.width - w) / 2);
  var cent = ((screen.height - h) / 2);

 PicWin=window.open("",picname,'toolbar=0,scrollbars=auto,location=0,statusbar=0,scrollbars=auto,resizable=yes,width='+w+',height='+h+',screenX=50,screenY=50,top='+cent+',left='+cenl);
  PicWin.document.open();
  PicWin.document.writeln('<html>');
  PicWin.document.writeln('<head>');
  PicWin.document.writeln('<title>oRiginaL21 GalleRie</title>');
  PicWin.document.writeln('<link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.original21.com/CSS/upload_picWin.css\" title=\"style1\">');
  PicWin.document.writeln('</head>');
  PicWin.document.writeln('<body>');
  PicWin.document.writeln('<img src="'+picgoal+'" width="100%" height="100%">');
  PicWin.document.writeln('</body>');
  PicWin.document.writeln('</html>');
  PicWin.document.close();
}