function sizEm() {

imgmax=600; 

for(i=1;i<document.images.length;i++){
if(document.images[i].name=='sizem'){
imgw = document.images[i].width;
imgh = document.images[i].height; 
if((imgw > imgmax) && (imgw > imgh)){
document.images[i].width=imgmax;
document.getElementById(document.images[i].src).style.display='';
}else if(imgh > imgmax) {
document.images[i].height = imgmax;
document.getElementById(document.images[i].src).style.display='';
}
}}}
