hai messo un ; sbagliato
codice:
funtion Validate() {
  for (var i=0; i<document.forms[0].elements.length; ++i)
    if (document.forms[0].elements[i].value == "") {
      alert("Attenzione il campo è obbligatorio!");
      document.forms[0].elements[i].focus();
      return false;
    }
  return true;
}