All pastes #2052705 Raw Edit

Mine

public text v1 · immutable
#2052705 ·published 2011-05-02 03:27 UTC
rendered paste body
function validacion(){
        alert("works") //This is just to see if the function gets called
	if (document.formu.tiempo.value.length==0){
		document.getElementById("msg").innerHTML = "<b style='color: #DF0101;'>Tienes que ingresar un tiempo valido</b>";
		document.formu.tiempo.focus()
		return 0;
	}
	else{
		document.getElementById("msg").innerHTML = "";
		validarEntero(document.formu.tiempo.value)
	}
	return 1;
}

function validarEntero(valor){
    valor = parseInt(valor)
	if (isNaN(valor)) {
		return “”
		document.getElementById("msg").innerHTML = "<b style='color: #DF0101;'>El valor debe de ser un numero entero</b>";
	}
	else{
		document.getElementById("msg").innerHTML = "";
		return valor
	}
}