function AuthCheck(){
		if (document.getElementById("txt_name").value!=''){
			return true;
		} else return false;
	}
	
function Email(mittente,oggetto,messaggio) {
	var email = ''
	if ((oggetto == "") || (oggetto == "undefined")) {
		alert("Inserire un oggetto.");
		document.modulo.oggetto.focus();
	}
	else if ((messaggio == "") || (messaggio == "undefined")) {
		alert("Inserire un messaggio.");
		document.modulo.messaggio.focus();
    }
    else if ((mittente == "") || (mittente == "undefined")) {
		alert("Inserire un nome per il mittente.");
		document.modulo.mittente.focus();
    }
    else {
		location.href = "mailto:info@cedacrinet.it" + "?Subject=Web message from " + mittente + ": " + oggetto + "&Body=" + messaggio;
	}
}
/*
function set_preferences(objName, direc, speed){ //--utilizzata dal ticker delle notizie in home page
	try{
		var objMar = document.all(objName);
		objMar.direction      = (direc!='') ? direc : 'up';
		objMar.style.width    = "350px";
		objMar.style.height   = "75px";
		objMar.style.BEHAVIOR = "slide";
		objMar.scrollDelay    = (speed!='' && speed!=0) ? speed : 60;
		objMar.scrollAmount   = 1;
		objMar.style.borderColor = "black";
		objMar.style.borderStyle = "none";
	}catch(e){
		void(0);
	}
}
*/
