<!-- 
function resize_pics(max_width,max_Photo,n_myPhoto){ 
   for (i=0;i<=document.images.length-1; i++) 
      { 
      while (!document.images[i].complete){ 
         break; 
      } 
      if (document.images[i].width>max_width){ 
            document.images[i].width=max_width; 
      } 
   } 
   for(j=0;j<n_myPhoto;j++){
   id="Photo"+j;
  if (document.getElementById(id).width>max_Photo){ 
         document.getElementById(id).width=max_Photo; 
      }
	}
	body=document.body.scrollHeight;
} 
//--> 
