<!--
function PictureWindow(Picture, Shape)
{
   if (Shape == "HORIZONTAL" )
   {
	   var PW = window.open(Picture,
   		           	 "LargePicture",
       	        	 "width=750,height=525, status=no, resizable=no");
	   PW.resizeTo(780,580);
	   PW.focus();
   }
   
   if (Shape == "VERTICAL" )
   {
      var PW = window.open(Picture,
   		            "LargePicture",
       	        "width=525,height=700, status=no, resizable=no");    
      PW.resizeTo(425,650);
      PW.focus();
    }   	        
 }  
//->

