function showLingue() {
	Effect.SlideUp('btnlingua', { duration: 0.3 });
	Effect.SlideDown('menulingua', { duration: 0.5 });
}
function hideLingue() {
	Effect.SlideUp('menulingua', { duration: 0.3 });
	Effect.SlideDown('btnlingua', { duration: 0.5 });
}
function checkForm() {
	if ( $F('nome') == null || $F('nome') == "" || $F('nome') == "undefined") {
		$('nome').focus();
		$('nome').setStyle({ backgroundColor: "#FDF4BA" });
		alert("Il campo nome è richiesto");
		return false;
	} else {
		$('nome').setStyle({ backgroundColor: "#FFF" });
	}

	if ( $F('email') == null || $F('email') == "" || $F('email') == "undefined") {
		alert("Il campo email è richiesto");
		$('email').setStyle({ backgroundColor: "#FDF4BA" });
		$('email').focus()
		return false;
	} else {
		apos = $F('email').indexOf("@");
		dotpos = $F('email').lastIndexOf(".");
		if (apos < 1 || dotpos-apos < 2) {
			alert("Indirizzo email non corretto");
			return false;
		} else {
			$('email').setStyle({ backgroundColor: "#FFF" });
		}
	}

	if ( $F('txt') == null || $F('txt') == "" || $F('txt') == "undefined") {
		alert("Il campo txt è richiesto");
		$('txt').setStyle({ backgroundColor: "#FDF4BA" });
		$('txt').focus()
		return false;
	} else {
		$('txt').setStyle({ backgroundColor: "#FFF" });
	}
	return true;
}
