function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {
thisfield.value = "";
thisfield.className='formOn';
}
}

function clickrecall(thisfield, defaulttext) {
if (thisfield.value == "") {
thisfield.value = defaulttext;
thisfield.className='formOff';
}
}

function validatecerca() {
if (document.cerca.cerca.value.length < 4) {
    window.alert("Inserire una parola di almeno 4 caratteri!");
    document.cerca.cerca.focus();
       return false;
}
if (document.cerca.cerca.value == "Cerca...") {
    window.alert("Inserire una parola da cercare!");
       return false;
}
return true;
}

function validatecommento() {
if (document.risposta.testo.value.length < 2) {
    window.alert("Attenzione! Il commento è privo di testo!");
    document.risposta.testo.focus();
       return false;
}
if (document.risposta.testo.value == "Commenta...") {
    window.alert("Attenzione! Il commento è privo di testo!");
       return false;
}
return true;
}
