function envia_contacto()
{
  objF = MM_findObj("fData");
  var comentario = "";

  if(objF.txt_nombre.value == ""){
	comentario += "\n- Nombre.";
  }
  if((objF.txt_email.value.length == 0) || (objF.txt_email.value.indexOf("@") < 1) || (objF.txt_email.value.lastIndexOf(".") < 3)){
	comentario += "\n- El Email es obligatorio y ha de tener el formato correcto.";
  }
  if(objF.txt_comentario.value == ""){
	comentario += "\n- Consulta.";
  }
  if(objF.txt_codigo.value == ""){
	comentario += "\n- Código de seguridad.";
  }
  if(comentario != ""){
	window.alert("Ha dejado de completar algún campo obligatorio:"+comentario);
	return false;
  }
  document.getElementById('capa_accion').innerHTML='Enviando el correo. Espere, por favor ...';
  objF.submit();
  return true;
}
function volver()
{
  objF = MM_findObj("fData");
  objF.submit();
  return;
}