// 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=640,height=450");

  // 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="#000000" text="#FFFFFF" >');
  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('<p align="center"><font face="verdana" size="1">© 2000 ');
  myWin.document.write('<a href="http://www.manuelnegri.com">Manuel Negri</a>  All Rights Reserved.</font>');
  myWin.document.write('</body></html>');

  // close the document - (not the window!)
  myWin.document.close();  
}
// Set to open a new window. In effect we will have two windows opened. A portrait and a landscape
function Showpicv(Whatpic) {
  myWin2= open("", "displayWindow2","toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,width=450,height=620");

  // open document for further output
  myWin2.document.open();
  
  // create document
  myWin2.document.write("<html><head><title>www.ManuelNegri.com</title>");
  myWin2.document.write('</head><body bgcolor="#000000" text="#FFFFFF" >');
  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="middle" align="center"><img border="0" src=');
  myWin2.document.write(Whatpic +' ></td></tr></table></center></div>');
  myWin2.document.write('<p align="center"><font face="verdana" size="1">© 2000 ');
  myWin2.document.write('<a href="http://www.manuelnegri.com">Manuel Negri</a>  All Rights Reserved.</font>');
  myWin2.document.write('</body></html>');

  // close the document - (not the window!)
  myWin2.document.close();  
}