function form_search(){
	if( (document.form_cerca.testodacercare.value.length <3) || (document.form_cerca.testodacercare.value == "Cerca nel sito") ){
		alert("Inserire un testo da cercare");
		return(false);
	}
	return(true);
}

function search_title(){
	if(document.form_cerca.testodacercare.value == ''){
		document.form_cerca.testodacercare.value = 'Cerca nel sito';
		}
	}

function check_chat(){

	if( (document.form_chat.chat_nick.value.length <3) || (document.form_chat.chat_nick.value == 'Nickname') ){
		document.form_chat.chat_nick.focus();
		alert('Inserire il NICKNAME della chat');
		return(false);
	}
	if( (document.form_chat.chat_pass.value.length <3) || (document.form_chat.chat_pass.value == 'Password') ){
		document.form_chat.chat_pass.focus();
		alert('Inserire la PASSWORD della chat');
		return(false);
	}
	return(true);
}