function chk_contacts(lang_id){
	
	with(document.contacts){
		if(
		 chk_txt1(nome,		nome.alt ) &&
		 chk_txt1(cognome,	cognome.alt ) &&
         chk_email(email,	email.alt ) &&
		/* chk_txt(indirizzo,	indirizzo.alt ) &&
		 chk_txt(citta,		citta.alt ) &&
		 chk_txt1(stato,		stato.alt ) &&
		 chk_telefono(telefono,	telefono.alt) &&*/
		 chk_txt(messaggio,	'Insert your Messagge') &&
		 chk_aut2(lang_id, autorizzazione.alt) ){
			return true;
		}
		return false;
	}
}


function chk_ric_passwd(lang_id){
	
	with(document.contacts){
		if(
         chk_txt1(nome,		nome.alt ) &&
		 chk_txt1(cognome,	cognome.alt ) &&
		// 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,	email.alt )
		 ){
			return true;
		}
		return false;
	}
}



function chk_quantita(qta){
	with(document.prodotto_carrello){
		if(qt.value < qta){
			alert(qt.alt);
			qt.focus();
			return false;
		}else{
			return true;
		}
	}
}



function chk_form_iscrizione(){
	with(document.iscrizione){
		if(
		 chk_codfis(cod_fis,cod_fis.alt ) &&
		 chk_txt1(nome,		nome.alt ) &&
		 chk_txt1(cognome,	cognome.alt ) &&
         chk_email(email,	email.alt ) &&
		 chk_txt(indirizzo,	indirizzo.alt ) &&
		 chk_txt(citta,		citta.alt ) &&
		 chk_num(cap,		cap.alt ) &&
		 chk_txt1(prov,		prov.alt ) &&
		 chk_txt1(stato,		stato.alt ) &&
		 chk_telefono(telefono,	telefono.alt) &&
		 chk_info(informazione.alt)  &&
		 chk_radio(autorizzazione[0].alt)
		){
		
		return true;
		}
		return false;
	}
}	


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


function PrintThisPage() 
{ 
   var sOption="toolbar=no,location=no,directories=no,menubar=no,"; 
       sOption+="scrollbars=yes,width=800,height=650,left=100,top=25"; 

   var sWinHTML = document.getElementById('contentstart').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html><LINK href=print.css rel=Stylesheet><body onload="window.print();window.close();">'); 
       winprint.document.write(sWinHTML);          
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}



function GetPrintContent()
{
	var PrintDiv =  document.getElementById('printcontent');
	var ContentDiv =  window.opener.document.getElementById('contentstart');
	PrintDiv.innerHTML = ContentDiv.innerHTML;
}



/*function changemenu(menusel,color)
{	

	for (i=1; i <=10 ; i++ ) {
		document.getElementById("menu"+i).style.background = "transparent url(img/sf_bott_" + i + "_s.gif) ";
	}
	
	document.getElementById('colonna_centrale').style.background = color ;
	document.getElementById('img_centrale').src = "img/image_"+menusel+".jpg";
	document.getElementById(menusel).style.background = "url(img/vuoto.gif) "+ color ;
	document.getElementById('testo_home').innerHTML ="ciao";
	
}*/





