function chk_contacts(lang_id){
	
	with(document.contacts){
		if(
         chk_txt(nome,"Inserisci il tuo Nome","Insert your Name",lang_id) &&
		 chk_txt(cognome,"Inserisci il tuo Cognome","Insert your Surname",lang_id) &&
		// chk_txt(indirizzo,"Inserisci l'Indirizzo") &&
		 //chk_num(cap,"Inserisci CAP") &&
		// chk_txt(stato,"Inserisci la Stato","Insert The Country",lang_id) &&
		
		// chk_telefono(telefono,"Inserisci un numero di Telefono corretto") &&
		 //chk_telefono(fax,"Inserisci un numero di Fax corretto") &&
		 chk_email(email,"Inserisci un'Email valida","Insert your correct Email", lang_id) &&
		 chk_txt(messaggio,"Inserisci il Messaggio","Inserisci the Messagge", lang_id) &&
		 chk_aut2(lang_id) ){
			return true;
		}
		return false;
	}
}


function control_login(){
	with(document.login){
		if((user.value=="")&&(pswd.value=="")){
			return false;
		}
		return true;
	}
}

 

