function abrir(var1){
	//alert(var1);
  window.open(var1,'ventana',"width=700, height=600, scrollbars=no, menubar=no, location=no, resizable=no");	
}	
function mail(texto){

    var mailres = true;
    var cadena = "abcdefghijklmnñopqrstuvwxyzABCDEFGHIJKLMNÑOPQRSTUVWXYZ1234567890@._-";

    var arroba = texto.indexOf("@",0);
    if ((texto.lastIndexOf("@")) != arroba) arroba = -1;

    var punto = texto.lastIndexOf(".");

     for (var contador = 0 ; contador < texto.length ; contador++){
        if (cadena.indexOf(texto.substr(contador, 1),0) == -1){
            alert("La direcci\u00f3n de email introducida es incorrecta");

            break;
     }
    }

    if ((arroba > 1) && (arroba + 1 < punto) && (punto + 1 < (texto.length)) && (mailres == true) && (texto.indexOf("..",0) == -1))
     document.formulario.submit();
    else
     alert("La direcci\u00f3n de email introducida es incorrecta");

    
} 
function capa(var1){
document.getElementById('contactoForm').style.visibility="hidden";

document.getElementById(var1).style.visibility="visible";
}
function CerrarContacto(var1){
document.getElementById(var1).style.visibility="hidden";
}	
