// JavaScript Document
function subscripcion(){
	$('opaco').setOpacity(0);
	$('opaco').fade(.7);
	document.getElementById('opaco').style.display='block';
	document.getElementById('formulario').style.display='block';
}

function restaurarformulario(){
	document.getElementById('cargando_formulario').style.display='none';
	document.getElementById('formulario').style.display='block';
}

function cerrarformulario(){
	$('opaco').fade(0);
	document.getElementById('cargando_formulario').style.display='none';
	document.getElementById('formulario').style.display='none';
	document.getElementById('opaco').style.display='none';
}

function validar(que,donde){
	if(que==''){
		document.getElementById(donde).src="./imagenes/ko.png";
		return false;
	}else{
		document.getElementById(donde).src="./imagenes/ok.png";
		return true;
	}
}

function validar_mail(texto,donde){
	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){ 
            mailres = false; 
            break; 
     } 
    } 

    if ((arroba > 1) && (arroba + 1 < punto) && (punto + 1 < (texto.length)) && (mailres == true) && (texto.indexOf("..",0) == -1)) {
     document.getElementById(donde).src="./imagenes/ok.png";
	 return true;
	}else{ 
     document.getElementById(donde).src="./imagenes/ko.png"; 
	 return false;
	}
} 


function habilitarBoton(){
	if(validar_mail(document.preusuario.email.value,"estado3")){
		document.getElementById("ĦListo!").disabled=false;	
	}else{
		document.getElementById("ĦListo!").disabled=true;	
	}
}

function cargaformulario(){
	document.getElementById("formulario").style.display="none";
	document.getElementById("cargando_formulario").style.display="block";
}
