function hilite(field)
{
 if (document.all)
 {
  document.mailform.elements[field].style.backgroundColor="f2c052";
 }
}
function testData()
{
 if (document.mailform.elements['realname'].value=="")
 {
  alert ("\nВведите контактное лицо!\t\n")
  hilite ('realname');
  document.mailform.elements['realname'].focus();
  return false;      
 }
 if (document.mailform.elements['email'].value=="")
 {
  alert ("\nНе введен E-mail контактного лица!\t\n")
  hilite ('email');
  document.mailform.elements['email'].focus();
  return false;      
 }
 if (document.mailform.elements['message'].value=="")
 {
  alert ("\nНе введен текст письма!\t\n")
  hilite ('message');
  document.mailform.elements['message'].focus();
  return false;      
 }
}