function create_letter(to)
{
	newURL = "http://www.infoyar.ru/mailer.php?to=" + to;
	var newwin = window.open(newURL,'_blank','width=510,height=310,status=no,toolbar=no,menubar=no,location=no,resizable=no');
	newwin.focus();
}

function check()
{
	if(document.forms[0].to.value.length==0)
	{
		alert("Адрес получателя отсутствует!");
		document.forms[0].to.focus();
		return false;
	}

	if((document.forms[0].from.value.length!=0) && (document.forms[0].from.value.indexOf('@')==-1))
	{
		alert("Обратный адрес отсутствует или некорректен!");
		document.forms[0].from.focus();
		return false;
	}

//	document.all.go.style.display = "none";
//	document.all.wait.style.display = "";
	document.getElementById("go").style.display = "none";
	document.getElementById("wait").style.display = "";

	return true;
}

function anketa()
{
	var newwin = window.open('/anketa.php','_blank','width=640,height=600,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes');
	newwin.focus();	
}