<!--
 function check_email()
 {
  f = document.subscribe;
  if( f.email.value.length < 5 ) { f.email.focus(); alert('Не указан e-mail'); return false; }
  return true;
 }

 function check_msg()
 {
  f = document.message;
  if( f.message.value.length < 3 ) { f.message.focus(); alert('Напишите пожалуйста сообщение.\n'); return false; }
  if( f.cfio.value.length < 3 ) { f.cfio.focus(); alert('Не заполнено поле "Ф.И.О"\n'); return false; }
  if( f.cemail.value.length < 3 && f.cphone.value.length < 5 ) { f.cemail.focus(); alert('Укажите контактную информацию.\n'); return false; }
  return true;
 }
-->
