function  campiobbligatori(){ 
var f = document.inserimento_tema; 
if(f.nome_tema.value == ""){ 
alert("Il campo \"nome tema\" non \e' stato compilato") 
f.nome_tema.focus(); 
return false; 
} 
if(f.email.value == ""){ 
alert("Il campo \"email\" non \e' stato compilato") 
f.email.focus(); 
return false; 
}
if(f.categoria.value == ""){ 
alert("Il campo \"categoria\" non \e' stato compilato") 
f.categoria.focus(); 
return false; 
}
if(f.file.value == ""){ 
alert("Non hai inserito nessun file da inviare") 
f.file.focus(); 
return false; 
} 
if (!(f.autorizzazione.checked)) {
alert("Autorizzaci ad inserire un nostro link nel tuo tema");
return false;
}
if(f.campo_codice.value == ""){ 
alert("Il codice antispam non \e' stato inserito") 
f.file.focus(); 
return false; 
}
return true; 
} 

function  obbligatori(){ 
var f = document.concorso; 
if(f.nome.value == ""){ 
alert("Il campo \"nome\" non \e' stato compilato") 
f.nome.focus(); 
return false; 
} 
if(f.cognome.value == ""){ 
alert("Il campo \"cognome\" non \e' stato compilato") 
f.cognome.focus(); 
return false; 
}
if(f.email.value == ""){ 
alert("Il campo \"email\" non \e' stato compilato") 
f.email.focus(); 
return false; 
}
if(f.sito.value == ""){ 
alert("Devi inserire il sito dove inserirai il nostro link") 
f.sito.focus(); 
return false; 
} 
if(f.campo_codice.value == ""){ 
alert("Il codice antispam non \e' stato inserito") 
f.campo_codice.focus(); 
return false; 
}
return true; 
} 
