function chk_form_iscrizione(){
	with(document.iscrizione){
		if(
	
		 chk_txt1(nome,		nome.alt ) &&
		 chk_txt1(cognome,	cognome.alt ) &&
         chk_email(email,	email.alt ) &&
		// chk_telefono(telefono,	telefono.alt) &&
		 chk_info(informazione.alt)  &&
		 chk_radio(autorizzazione[0].alt)
		){
		
			return true;
		}else{
			return false;
		}
	}
}	


function change_news(newsid){
	
	document.getElementById('news_0').className='news_no';
	document.getElementById('news_1').className='news_no';
	document.getElementById('news_2').className='news_no';
	
	document.getElementById(newsid).className='news';
 
}

function change_news2(newsid,num){
	
	
	for (i=0;i<num;i++){
		document.getElementById('news_'+i).className='news_no';
	}
	
	document.getElementById(newsid).className='news';
 
}




function precaricaimmagini(){
	if (document.images){
		var filediimmagini = precaricaimmagini.arguments;
		var matriceprecaricate = new Array();
		for (var i=0; i<filediimmagini.length; i++){
			matriceprecaricate[i] = new Image;
			matriceprecaricate[i].src = filediimmagini[i];
		}
	}
}

function chk_form_acquisto(){
	with(document.iscrizione){
		if(
	
		 chk_txt1(nome, nome.alt ) &&
		 chk_txt1(cognome,	cognome.alt ) &&
         chk_int(tel, tel.alt ) &&
		 chk_email(email, email.alt ) &&
		// chk_telefono(telefono,	telefono.alt) &&
		 chk_info(informazione.alt)  &&
		 chk_radio(autorizzazione[0].alt)
		){
		
			return true;
		}else{
			return false;
		}
	}
}
