function printPage()
{
    var forPrint = window.open("","","");
    var content = "<html><head><title>Табачно-продуктовая дистрибьюторская компания &laquo;Принц&raquo; г.Череповец</title><link href='style/stylePrinceprint.css' type='text/css' rel='stylesheet'/></head><body><div id='blankA4'>" + document.getElementById("Conteiner").innerHTML + "</div><!-- Yandex.Metrika --><script src='//mc.yandex.ru/metrika/watch.js' type='text/javascript'></script><div style='display:none;'><script type='text/javascript'>try { var yaCounter1149961 = new Ya.Metrika(1149961); } catch(e){}</script></div><noscript><div style='position:absolute'><img src='//mc.yandex.ru/watch/1149961' alt='' /></div></noscript><!-- /Yandex.Metrika --></body></html>";
    forPrint.document.write(content);
    forPrint.focus();
}
function check()
{
    if ((window.document.questform.Person.value == "")&&(window.document.questform.Company.value == ""))
	{
		alert("Пожалуйста, заполните поле ФИО или ОРГАНИЗАЦИЯ для продолжения");
		return false;
	}
	
	if (window.document.questform.email.value == "")
	{
		alert("Пожалуйста, введите Ваш электронный адрес");
		return false;
	}
	else
	{
		if (window.document.questform.email.value.indexOf("@") == -1)
		{
			alert("Поле электронный адрес заполнено не верно!");
    		return false;
		}
	}
}
