function validar_mail(){
	var control = 0;
	var letras="%";
		   for(i=0; i<document.getElementById('mail').value.length; i++){
			  if (letras.indexOf(document.getElementById('mail').value.charAt(i),0)!=-1){
				control = 1;
			  }
		   }
		if(control==0){
			document.bajas.submit();
		}
} 
function popUpDos(pagina, titulo, propiedades){
	
	window.open(pagina,titulo,propiedades);
	
}

