function valdig(CAMPO) {
	var validos = " áéíóúabcdefghijklmñnopqrstuvwxyzABCDEFGHIJKLMNÑOPQRSTUVWXYZ1234567890ºªÁÉÍÓÚ-*+<>()_^!/#$%:,;.@\r\n" ;
	var ok = "si";
	var temp;
	var tx="";
	for (var i=0; i<CAMPO.value.length; i++) {
		temp = "" + CAMPO.value.substring(i, i+1);
		if (validos.indexOf(temp) == "-1") ok = "no";
	}
	if (ok == "no") {
		tx += "\n-  El campo de datos que intenta ingresar solo";
		tx += "\n   puede contener letras y algunos signos";
		tx += "\n   de puntuación, numeros u otros caracteres.";
		tx ="Se ha detectado el siguiente error:\n" +
		"_____________________________________\n" +
		tx + "\n_____________________________________" +
		"\n\nReingrese el dato nuevamente";
		alert(tx);
		CAMPO.focus();
		CAMPO.select();
	}
}
