﻿function sendForm(){
	
	var pagina=$('pagina');
	var txt=$('txt');
	var tst=$('txt').value;
	var fdb=$('fdb');
	var cnt=$('feedback');
	var act=$('act');
	var aas=$('aas');
	
	var e=0;
	
	pagina.style.backgroundColor='#FFF';
	txt.style.backgroundColor='#FFF';
	aas.style.backgroundColor='#FFF';
	
	if(trim(pagina.value)==''){
		pagina.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('feedbackM');
});
