function echeck(str) {
  var filter=/^([\w\-\.]+)@((\[([0-9]{1,3}\.){3}[0-9]{1,3}\])|(([\w\-]+\.)+)([a-zA-Z]{2,4}))$/
  return (filter.test(str))
}

function validarContacto (){
  if (document.forms['Fcontacto'].FCname.value == ""){
    alert ("Por favor, introduzca su Nombre y Apellido.");
  } else if (document.forms['Fcontacto'].FCemail.value == "") {
    alert ("Por favor, introduzca su e-mail.");
  } else if (document.forms['Fcontacto'].FCemail.value != "" && echeck(document.forms['Fcontacto'].FCemail.value)==false){
    alert ("La dirección de e-mail no es válida.");
	} else if (document.forms['Fcontacto'].FCcountry.value == "") {
    alert ("Por favor, seleccione su país.");
	} else if (document.forms['Fcontacto'].FCcomment.value == "") {
    alert ("Por favor, introduzca su consulta.");
  } else {
    document.forms['Fcontacto'].submit ();
  }
}

