<!-- 
// ShortWay Validator
// Lluís Casany - lluis.casany@filnet.es
// Filnet.es - www.filnet.es
function validacio(f) {
	// text i textarea
	for (i=0; i<f.length; i++) {
		if (f[i].type.indexOf("text") != -1) {
			if (f[i].value == "") {alert("Debes introducir un valor en\n"+f[i].name); f[i].focus();return false;}	
		}
	}
	return true;
}
// -->
