// JavaScript Document
function proverka()
{
	if (document.main.imj.value=="")
	{
		alert('Заполните поле ИМЯ');
		document.main.imj.focus();
	}
else if (document.main.tel.value=="")
{
alert('Оставьте контактный телефон');
document.main.tel.focus();
}
	else if (document.main.vopros.value=="")
	{
		alert('Почему же вы молчите?!');
		document.main.vopros.focus();
	}
	else
	document.main.submit();
}