function sendRequestCheck(form)
{
 ErrorFlag=0;
 if (form.Name.value=='')
 {
  alert('Введите Ваши фамилию, имя и отчество!');
  ErrorFlag=1;
 }
 if (form.EMail.value=='')
 {
  alert('Введите Ваш Адрес электронной почты!');
  ErrorFlag=1;
 }
 if (form.Inquiry.value=='')
 {
  alert('Введите Ваш запрос!');
  ErrorFlag=1;
 }
 if (ErrorFlag==1)
  return false;
 return true;
}


function MessageBox(MessageText)
{
 Message=window.open("", "Message", "toolbar=no, resizable=no, scrollbars=no, width=240, height=120");
 Message.document.write('<html><head><title>Системное сообщение</title><link rel="stylesheet" href="/style.css" type="text/css"></head>');
 Message.document.write('<body bgcolor="#FFFFFF"><table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"><tr><td width="100%" height="100%" style="text-align: center; vertical-align: middle;">' + MessageText + '<br><br><a href="" onClick="window.close(); return false;">Закрыть окно</a></td></tr></table><script language="JavaScript">var TimerRunning=true; TimeID=setTimeout("window.close()", 5000);</script></body></html>');
 Message.focus();
}
