<!--
		function validEmail(email){
			invalidChars=" /:,;"
			if (email==""){return false}
			for(i=0;i<invalidChars.length;i++)
				{badChar=invalidChars.charAt(i)
				 if (email.indexOf(badChar,0)>-1){return false}
			}
			atPos=email.indexOf("@",1)
			if (atPos==-1) {return false}
			if (email.indexOf("@",atPos+1)!=-1){return false}
			periodPos=email.indexOf(".",atPos)
			if(periodPos==-1) {return false}
			if(periodPos+3>email.length) {return false}
			return true
		  } 	
		  
		function checkForm(theForm) {
		//	theForm = document.forms[idform]
		//	theForm = document.getElementById(idform)
			var msg = "ATTENZIONE:\n";
			var err = false;
		//	for(f=0; f<theForm.length-1; f++) {
			for(f=0; f<theForm.length; f++) {
				if (theForm[f].getAttribute("title")!=null && theForm[f].getAttribute("title")!="" && theForm[f].disabled==false) {
					if (theForm[f].value=="") {
						msg = msg+"- "+theForm[f].getAttribute("title")+"\n";
						theForm[f].style.borderColor="#c1902e";
			//			theForm[f].style.backgroundColor="#E5F5F6";
						err = true;
					}
					else if(theForm[f].disabled==false) {
						theForm[f].style.borderColor="#cccccc";
				//		theForm[f].style.backgroundColor="#FFFFFF";
					}
				}
			}
			if (theForm.email) {
				if (validEmail(theForm.email.value)==false && theForm.email.value != "") {
					if (theForm.email.getAttribute("title")!=null) {
						msg = msg+"- "+theForm.email.getAttribute("title")+"\n";
						theForm.email.style.borderColor="#c1902e";
			//			theForm.email.style.backgroundColor="#E5F5F6";
						err = true;
					}
					else {
						theForm.email.style.borderColor="#cccccc";
					}
				}
			}
			if (theForm.email && theForm.confermaemail) {
				if(theForm.email.value!=null && theForm.confermaemail.value!=null && theForm.email.value!=theForm.confermaemail.value) {
					msg = msg+"- "+theForm.confermaemail.getAttribute("msg2")+"\n";
					//msg = msg+"- "+"please insert a valid e-mail address"+"\n";
					theForm.email.style.borderColor="#c1902e";
		//			theForm.email.style.backgroundColor="#E5F5F6";
					theForm.confermaemail.style.borderColor="#c1902e";
		//			theForm.confermaemail.style.backgroundColor="#E5F5F6";
					err = true;
				}
				else {
						theForm.email.style.borderColor="#cccccc";
						theForm.confermaemail.style.borderColor="#cccccc";
				}
			}
				
		/*		tipo = false 
				for (counter=0; counter<theForm.tipo.length; counter++){ 
					if(theForm.tipo[counter].checked==true) {
						tipo = true 
				   } 
				}
				if(tipo==false) {
					err = true;
					msg = msg+"- scegli il tipo di kit"+"\n";
				}
		*/

				if(theForm.name=='vendita') {
					if(theForm.privacy.checked==false) {
						msg = msg+"- "+theForm.privacy.getAttribute("msg2")+"\n";
						//msg = msg+"- "+"please accept privacy conditions"+"\n";
			//			theForm.trattamento_dati.style.backgroundColor="#E5F5F6";
						err = true;
					} else {
			//			theForm.trattamento_dati.style.borderColor="#666";
			//			theForm.trattamento_dati.style.backgroundColor="#E5F5F6";
					}
				}


			if (err) {
				alert(msg);
				return false;
			}
			else {return true;}
		}

//-->
