... dettaglio:

codice:
function Controllo(campo) {
 var myre=/^[a-zA-Z0-9]+$/;
 if (myre.test(campo.value)) return true;
 return false;
}
Ciao !