function swapImages(img,fileSm, fileLg, widthSm, widthLg){
	if (img.src.indexOf('/icons/') > 0){
		img.src=fileLg;
		img.alt="Уменьшить";
		img.width=widthLg;
	}else{
		img.src=fileSm;
		img.alt="Увеличить";
		img.width=widthSm;
	}
	return false;
}
