 function img_change(img)
 {
 d = img.height/img.width;
 img.width = 150;
 img.height = img.width*d;
 }
