var pasa=false;
function setOpt(){
	pasa=true;
}
function evaluar(){
	if(pasa) document.getElementById('f').submit();
	else {
		alert("Seleccione un opcion");
		return false;
	}//no selecciono nada el papafritas
}

function check1(){
	a=1;

	if(isBlank(document.f1.nombre.value)){	
		alert ("ERROR: El campo 'Nombre' está vacio.");
		document.f1.nombre.focus();
		a=0;
	}
	
	if (!Filters.email.test(document.f1.email.value)){
		alert('ERROR: El correo electrónico no es válido.');
		document.f1.email.focus();
		a=0;
	}

	if(a==1) return true;
	else return false;
}



function isBlank(s) {
    for(var i = 0; i < s.length; i++) {
        	var c = s.charAt(i);
        	if ((c != ' ') && (c != '\n') && (c != '\t')) return false;
    }
	return true;
}
