Ciao


<script>
<!--
function ctrl(){
var f = document.mioform;
if((f.cs_costo.value == "") || (isNaN(f.cs_costo.value))){
alert("Inserire il costo del corso/master !");
f.cs_costo.focus();
f.cs_costo.select();
return false;
}
return true;
}
// -->
</script>

<form name="mioform" onSubmit="return ctrl()">
<input type="text" name="cs_costo">
<input type="submit" value="Clicca">
</form>




Massimo