// JavaScript Document

function reloggin() {
	login = document.getElementById("tbllogin");
	nologin = document.getElementById("tblerr");
	
	login.className = "show";
	nologin.className = "hide";
}

var newWindow = null;
var previusSpan = "";
function privacy(){
	if (newWindow != null) {
		newWindow = window.open("privacy.php",'privacy','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,HEIGHT=380,WIDTH=624')
		newWindow.focus();
	}
	else {
		newWindow = window.open("privacy.php",'privacy','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,HEIGHT=380,WIDTH=624')
	}
}

	function ConvalidaForm() {
		email = document.frmArt.email.value;
		remail = document.frmArt.remail.value;
		pass = document.frmArt.pass.value;
		ragsociale = document.frmArt.ragsociale.value;
		indirizzo = document.frmArt.indirizzo.value;
		comune = document.frmArt.comune.value;
		provincia = document.frmArt.provincia.options[document.frmArt.provincia.selectedIndex].value;
		cap = document.frmArt.cap.value;
		nome = document.frmArt.nome.value;
		cognome = document.frmArt.cognome.value;
		telefono = document.frmArt.telefono.value;
		privacy = document.getElementById("privacy").checked ? document.getElementById("privacy").value : "No";	
		contratto = document.getElementById("contratto").checked ? document.getElementById("contratto").value : "No";
		spam = document.getElementById("spam").value;
		checkspam = document.getElementById("checkspam").value;

		if(spam != checkspam) {
			alert("Attenzione! Il codice Anti-Spam e' errato. Controllare e riprovare.");
			return false;
		}
		
		if(email != remail) {
			alert("Attenzione! Gli indirizzi mail non corrispondono.");
			return false;
		} else if(email == "" || pass == "" || ragsociale == "" || indirizzo == "" || comune == "" || provincia == "" || cap == "" || nome == "" || cognome == "" || telefono == "") {
			alert("Attenzione! Valorizzare tutti i campi necessari (*)");
			return false;
		} else if(privacy == "No" || contratto == "No") {
			alert("Attenzione! E' necessario accettare sia le condizioni sulla privacy che le condizioni generali di vendita.");
			return false;
		}
		return true;
	}

	function ConvalidaFormProfilo() {
		email = document.frmArt.email.value;
		ragsociale = document.frmArt.ragsociale.value;
		indirizzo = document.frmArt.indirizzo.value;
		comune = document.frmArt.comune.value;
		provincia = document.frmArt.provincia.options[document.frmArt.provincia.selectedIndex].value;
		cap = document.frmArt.cap.value;
		nome = document.frmArt.nome.value;
		cognome = document.frmArt.cognome.value;
		telefono = document.frmArt.telefono.value;
		privacy = document.getElementById("privacy").checked ? document.getElementById("privacy").value : "No";	
		contratto = document.getElementById("contratto").checked ? document.getElementById("contratto").value : "No";
		
		if(email == "" || ragsociale == "" || indirizzo == "" || comune == "" || provincia == "" || cap == "" || nome == "" || cognome == "" || telefono == "") {
			alert("Attenzione! Valorizzare tutti i campi necessari (*)");
			return false;
		} 
		return true;
	}
	
	function ConvalidaRePassword() {
		email = document.frmArt.mail.value;
		if(email == "") {
			alert("Attenzione! Inserire l'indirizzo per recuperare la password.");
			return false;
		}
		return true;
	}

	function ConvalidaFormContatti() {
		Nominativo = document.getElementById("nominativo").value;
		Email = document.getElementById("email").value;
		Messaggio = document.getElementById("messaggio").value;
		privacy = document.getElementById("privacy").checked ? document.getElementById("privacy").value : "No";	
		spam = document.getElementById("spam").value;
		checkspam = document.getElementById("checkspam").value;
		
		if(privacy == "No") {
			alert("Attenzione! E' necessario accettare le condizioni del trattamento dei dati.");
			return false;
		}

		if(spam != checkspam) {
			alert("Attenzione! Il codice Anti-Spam e' errato. Controllare e riprovare.");
			return false;
		}

		if(Nominativo == "" || Email == "" || Messaggio == "") {
			alert("Attenzione! Per contattarci, compila il modulo con i dati obbligatori.");
			return false;
		}
		return true;
	}
	
	function filtra(cat) {
		document.location.href = cat;
	}
	
	function collapseThis(id) {
		obj2 = document.getElementById(id);
		$(obj2).slideUp();
	}
	
	function expandThis(id){
		
		obj = document.getElementById(id);
		if ($(obj).is(":hidden")) {
			
			if(previusSpan != "" && previusSpan != id) {
				collapseThis(previusSpan);
			}
			previusSpan = id;
			
			$(obj).slideDown("slow");
		} else {
			$(obj).slideUp();
		}
	}
