function email(i){
	a=document.getElementById(i).value;
    cadena=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/
    if(!cadena.exec(a)){
    	document.getElementById(i).value="";
    	document.getElementById(i).focus();
    	alert("Ingrese una cuenta de correo valida");
    	return false;
    	}
    }
function valida(c,d,e){
	error=0;
	for(i=1;i<=c;i++){
		if(document.getElementById("a"+i).value){
			document.getElementById("a"+i).style.backgroundColor="";
			}
		else{
			error++;
			document.getElementById("a"+i).style.backgroundColor=d;
			}
		}
	if(error>0){
		document.getElementById(e).style.visibility='hidden';
		document.getElementById(e).disabled='disabled';
		return false;
		}
	else{
		document.getElementById(e).style.visibility='visible';
		document.getElementById(e).disabled='';
		}
	}
function inicio(x){
	document.getElementById(x).focus();
	}
function ocultar(){
	document.getElementById('ayuda').style.visibility='hidden';
	}
