function ResizeImages()
{
   var myimg,oldwidth;
   var maxwidth=532;
   for(i=0;i<document.images.length;i++){
     myimg = document.images[i];
     if(myimg.width > maxwidth)
     {
        oldwidth = myimg.width;
        myimg.width = maxwidth;

     }
   }
}
ResizeImages();



