function Init()
{
	NewMargin = 0;
	w = (document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth);
	NewSearchWidth = w-310;
//	document.getElementById("searchform").style.left = NewSearchWidth+"px";
	NewAllWidth = w-100;
	if (NewAllWidth < 950) {
		NewAllWidth = 950
		};
	if (NewAllWidth > 1250) {
		NewAllWidth = 1250
		NewMargin = NewAllWidth/100*3;
		};
	document.getElementById("container").style.width = NewAllWidth+"px";
	NewBottomWidth = w;
	if (NewBottomWidth < 950) {
		NewBottomWidth = 950
		};
	document.getElementById("bottom").style.width = NewBottomWidth+"px";
	NewRightWidth = NewAllWidth-430-NewMargin;
	document.getElementById("main-body").style.width = NewRightWidth+"px";
	document.getElementById("main-body").style.marginLeft = NewMargin+"px";
	document.getElementById("about").style.marginLeft = NewMargin+"px";
	NewRightWidth2 = NewAllWidth-400;
	document.getElementById("top-right").style.width = NewRightWidth2+"px";
	NewMenuMargin = (NewRightWidth2-600)/5;
	document.getElementById("works").style.marginLeft = NewMenuMargin+"px";
	document.getElementById("order").style.marginLeft = NewMenuMargin+"px";
	document.getElementById("price").style.marginLeft = NewMenuMargin+"px";
	document.getElementById("contacts").style.marginLeft = NewMenuMargin+"px";
	NewPreviewsWidth = NewRightWidth-400;
	try
	{
		document.getElementById("previews").style.width = NewPreviewsWidth+"px";
	}
	catch(err)
	{
		txt="There was an error on this page.\n\n";
	}
}		
//__________________________________________
function WinResize()
{
	NewMargin = 0;
	w = (document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth);
	NewSearchWidth = w-310;
//	document.getElementById("searchform").style.left = NewSearchWidth+"px";
	NewAllWidth = w-100;
	if (NewAllWidth < 950) {
		NewAllWidth = 950
		};
	if (NewAllWidth > 1250) {
		NewAllWidth = 1250
		NewMargin = NewAllWidth/100*3;
		};
	document.getElementById("container").style.width = NewAllWidth+"px";
	NewBottomWidth = w;
	if (NewBottomWidth < 950) {
		NewBottomWidth = 950
		};
	document.getElementById("bottom").style.width = NewBottomWidth+"px";
	NewRightWidth = NewAllWidth-430-NewMargin;
	document.getElementById("main-body").style.width = NewRightWidth+"px";
	document.getElementById("main-body").style.marginLeft = NewMargin+"px";
	document.getElementById("about").style.marginLeft = NewMargin+"px";
	NewRightWidth2 = NewAllWidth-400;
	document.getElementById("top-right").style.width = NewRightWidth2+"px";
	NewMenuMargin = (NewRightWidth2-600)/5;
	document.getElementById("works").style.marginLeft = NewMenuMargin+"px";
	document.getElementById("order").style.marginLeft = NewMenuMargin+"px";
	document.getElementById("price").style.marginLeft = NewMenuMargin+"px";
	document.getElementById("contacts").style.marginLeft = NewMenuMargin+"px";
	NewPreviewsWidth = NewRightWidth-400;
	try
	{
		document.getElementById("previews").style.width = NewPreviewsWidth+"px";
	}
	catch(err)
	{
		txt="There was an error on this page.\n\n";
	}
}
//__________________________________________
function FormCheck()
	{
		wrong = 1;
		wrong &= field_check('OrderForm', 'fio', 'fio', '');
		wrong &= field_check('OrderForm', 'email', 'email', '');
		wrong &= field_check('OrderForm', 'service', 'service', '');

		if (!wrong)
		{
			return false;
		} else {
			document.OrderForm.text.value = "Заказчик: " + document.OrderForm.fio.value + "\n" + "Контакты: " + document.OrderForm.email.value + "\n" + "Описание заказа: " + document.OrderForm.service.value + "\n>";
			document.OrderForm.submit();
			return true;
		}
	}
//__________________________________________
function FormReset()
	{
		document.OrderForm.fio.value = "";
		document.OrderForm.email.value = "";
		document.OrderForm.service.value = "";
		document.OrderForm.text.value = "";
	}
//__________________________________________
function OpenWin(f, w, h)
{
	window.open(f,"_blank","width=" + w + ",height=" + h + ", top=200,left=250, titlebar=no,toolbar=no,status=no,menubar=no,scrollbars=no");
}
