function boyutDuzelt(foto){
	resimGenislik = document.images(foto).width
	resimYukseklik = document.images(foto).height
	
	resimAdi = document.images(foto).name;	
	xinYeri = resimAdi.indexOf("X");
	genislik = parseInt(resimAdi.substring(0,xinYeri));
	
	if(resimGenislik > genislik){
		document.images(foto).width = genislik;
		degisimYuzdeW = (genislik*100) / resimGenislik;
		document.images(foto).height = (resimYukseklik*degisimYuzdeW)/100;
	}
}
function resimKontrol(){
	for(i=0;i<document.images.length;i++){
		if(document.images(i).name.indexOf("X")>-1){
			boyutDuzelt(i);
		}
	}
}