function el(id){
	return document.getElementById(id);
}

function showHideDiv(id){
 	if (el(id).style.display == 'none'){
 		el(id).style.display = 'block';
 	}
 	else{
 		el(id).style.display = 'none';
 	}
}

function getImageURLByID(id, format, chapter){
	if (!chapter){
	   chapter = 'models';
	}
	var baseURL = "http://img.oceni.com.ua/photos/oceni/" + chapter + "/";
	var X = Math.floor(id / 10000);
	var Y = Math.floor(id / 100);

	var imageURL = baseURL + X + "/" + Y + "/" + id + "/" + id + format + ".jpg";
	return imageURL;
}
