function showBigImage(image, width, height) {
	popupWin = window.open('/scripts/image.php?image=/'+image+'&w='+width+'&h='+height,'','width='+width+', height='+height+', left=100, top=10, directories=no, location=no, menubar=no, resizable=yes, scrollbars=no, status=no, toolbar=no');
//	popupWin.focus(); // £«îç¨â ¢ ¨¥6 (­¥ ¯®­ï«, ¢à®¤¥ à ¡®â ¥â ¡¥§ ­¥¥)
}

function showBigImagePrint(image, width, height, lg) { 
	var width1 = width;
	var height1 = height+50;
	popupWin = window.open('/scripts/image.php?image=/'+image+'&w='+width+'&h='+height+'&lg='+lg+'&print=1','','width='+width1+', height='+height1+', left=100, top=10, directories=no, location=no, menubar=no, resizable=yes, scrollbars=no, status=no, toolbar=no');
//	popupWin.focus(); // £«îç¨â ¢ ¨¥6 (­¥ ¯®­ï«, ¢à®¤¥ à ¡®â ¥â ¡¥§ ­¥¥)
}

// >>> ajax èçìåíåíèå ãîðîäà ïî çíà÷åíèþ ðåãèîíà
function changeCity(rid, lg) {
	$.ajax({
		type: "POST",
		cache: false,
		url: "/ajax/city.php",
		data: "rid=" + rid + "&lg=" + lg,
		success: function(html) { 
			$('#selectCity').html(html);
		}
	});
}
// <<< ajax èçìåíåíèå ãîðîäà ïî çíà÷åíèþ ðåãèîíà

