// Two functions, one to show the picture in Portrait (v) and the
// other in Landscape (h)
//
/*
function Showpich(Whatpic) {
  myWin= open("", "displayWindow","toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,width=200,height=200");

  // open document for further output
  myWin.document.open();
  
  // create document
  myWin.document.write("<html><head><title>www.ManuelNegri.com</title>");
  myWin.document.write('</head><body bgcolor="#E8F3FF" text="#000000" >');
  myWin.document.write('<p align="center">');
  myWin.document.write('</p><div align="center"><table border="0" width="100%"><tr>');
  myWin.document.write('<td width="100%" valign="middle" align="center"><img border="0" src=');
  myWin.document.write(Whatpic +' ></td></tr></table></center></div>');
  myWin.document.write('</body></html>');

  // close the document - (not the window!)
  myWin.document.close();  
}
*/
function Showpicv(Whatpic) {
  myWin2= open("", "displayWindow2","toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=0,resizable=1,copyhistory=0,width=350,height=250,top=200,left=400");
  // open document for further output
  myWin2.document.open();
  
  // create document
  myWin2.document.write("<html><head>");
  myWin2.document.write('</head><body bgcolor="#E8F3FF" text="#000000" >');
  myWin2.document.write('<p align="center">');
  myWin2.document.write('</p><div align="center"><table border="0" width="100%"><tr>');
  myWin2.document.write('<td width="100%" valign="top" align="center"><img border="0" src=');
  myWin2.document.write(Whatpic +' ></td></tr></table></center></div>');
  myWin2.document.write('</body></html>');

  // close the document - (not the window!)
  myWin2.document.close();  
}