function filled() {
	 if (document.Form1.fname.value=="") { alert ("Не заполнено поле Имя!"); return false; }	
	 if (document.Form1.ffone.value=="") { alert ("Не заполнено поле Телефон!"); return false; }
	 //if (document.Form1.fcount.value=="") { alert ("Не заполнено поле Количество гостей!"); return false; }
	 alert('Благодарим! Ваш заказ принят к рассмотрению!');
	 return true;
}


function testKey(e)
{
  // Make sure to use event.charCode if available
  var key = (typeof e.charCode == 'undefined' ? e.keyCode : e.charCode);

  // Ignore special keys
  if (e.ctrlKey || e.altKey || key < 32)
    return true;

  key = String.fromCharCode(key);
  return /[\d\-]/.test(key);
}


