var ie=navigator.userAgent;
var k=navigator.userAgent.indexOf('MSIE');
var ver=parseInt( ie.substring(k+5, ie.indexOf('.',k) ));

function open_picture(url,w,h) {
	max_width = 800;
	max_height = 600;
	if (window.screen) {
		max_width = window.screen.width - 20;
		max_height = window.screen.height - 53;
	}
	win_w = w + 16;
	win_h = h + 4;
	if (win_w > max_width)
		win_w = max_width;
	if (win_h > max_height)
		win_h = max_height;

	win = window.open("", "", "status=1, resizable=1, toolbar=1, scrollbars=1, width="+win_w+", height="+win_h);
	win.document.write('<html><body leftmargin=0 rightmargin=0 topmargin=0 marginwidth=0 marginheight=0><img src="' +url+'" width='+w+' height='+h+'"></body></html>');
	win.focus();
	return false;
}

function toggle(div) {
	$(div).slideToggle("normal");
}


jQuery(function($){
	//$("#FormTel").mask("+7 (999) 999-99-99");
	//$("div.nextHistoryText").hide();
	$("img[align=left]").css("margin","0px 10px 10px 0px");
	$("img[align=right]").css("margin","0px 0px 10px 10px");
	$(".hnd").css("display","none");
});

$(document).ready(function(){
	
$("input.price").keyup(function() { // форматирование цены в строке ввода
	//FormatPrice($(this));
});

});
