// JavaScript Document
function verif(){
		nom=document.getElementById('element_1').value;
		psw=document.getElementById('element_2').value;
		if(isNaN(nom)){
			if (psw!=''){
				return true
			} else {	
				alert("Faltan datos");
				return false;
			}
		} else {
			alert("Faltan datos");
			return false;
		}
}
function iratrubuna(){
	window.location.href="../../";
	return false;
}

