﻿function sendForm(){	
	
	var nome=$('nome');
	var luogo=$('luogo');
	var txt=$('txt');
	var tst=$('txt').value;
	var fdb=$('fdb');
	var cnt=$('firma');
	var aas=$('aas');
	var act=$('act');
	
	var e=0;
	
	nome.style.backgroundColor='#FFF';
	luogo.style.backgroundColor='#FFF';
	txt.style.backgroundColor='#FFF';
	aas.style.backgroundColor='#FFF';
	
	if(trim(nome.value)==''){
		nome.style.backgroundColor='#FFC6C6';
		e++;
	}
	if(trim(tst)==''){
		txt.style.backgroundColor='#FFC6C6';
		e++;
	}
	if(trim(aas.value)==''){
		aas.style.backgroundColor='#FFC6C6';
		e++;
	}

	
	if(e==1){
		fdb.innerHTML='Completare il campo evidenziato';
	}else if(e>1){
		fdb.innerHTML='Completare i campi evidenziati';
	}else if(isNaN(parseFloat(aas.value))){
		aas.style.backgroundColor='#FFC6C6';
		fdb.innerHTML='Il campo di controllo ammette solo valori numerici!';
	}else{	
		act.submit();
	}
}


è(window, 'load', function(){
	è($("invia"), 'click', function(){
		sendForm();
	});

	hilight('guestbookM');
});
