/**
 * @author Paolo
 */

 var nav_link = "";

var numNav = 0;
 
 function blockDIV(newdiv, area){
	
	document.getElementById(olddiv).style.display = "none";
	document.getElementById(newdiv).style.display = "block";
	
	if(olddiv=="chisiamo" || olddiv=="offerta" || olddiv=="creazioni" || olddiv=="collaboraconnoi"){
	document.getElementById(newdiv+"link").style.backgroundColor = "#ffffff";
	}
	else {
	document.getElementById(olddiv+"link").style.backgroundColor = "";
	document.getElementById(newdiv+"link").style.backgroundColor = "#ffffff";
	}
	updateNavLink(area);
	changeURL(newdiv, area);
	
	olddiv = newdiv;
	
	if(olddiv=="dovesiamo"){
		initialize();
	}
}
function updateNavLink(area){
	var html = "";
	
	if(i==0){
		html = document.getElementById("nav_link").innerHTML;	
		navlink = html;
		i++;
	}
	else{
		html = navlink;
	}
	html += " > "+area;
	document.getElementById("nav_link").innerHTML = html;
}		
	
 
function navlink(navtitle, navpage){
	nav_link += document.getElementById("nav_link").innerHTML+" <a href='"+navpage+"'>"+navtitle+" </a>";
	document.getElementById("nav_link").innerHTML = nav_link;
}
function changeURL(linkPage, area){
	location.hash = ""+linkPage+"?="+area;
}
function checkURL(){
	var URL = location.hash;
	
	if(URL != "")
	{
		var idx = URL.indexOf("?=");
		blockDIV(URL.substring(1, idx), URL.substring(idx+2));
	} 
}

function validForm(){
	
	if (radioButton == ""){
		alert("Selezionare il tipo di richiesta !!!");
	}
	else if (document.getElementById('nome').value == ""){
		alert("Inserire il nome !!!");
	}
	else if (document.getElementById("cognome").value == ""){
		alert("Inserire il cognome !!!");
	}
	else if (document.getElementById("msg").value == ""){
		alert("Inserire il messaggio !!!")
	}
	else {
	//
		var mail_a = "";
		switch (radioButton) {
			case "Generica":
			mail_a="info@crealabnet.it";
			break;
			case "Commerciale":
			mail_a="sales@crealabnet.it";
			break;
			case "Tecnica":
			mail_a="support@crealabnet.it";
			break;
			case "Risorse Umane":
			mail_a="hr@crealabnet.it";
			break;
		} 
		var nome = document.getElementById("nome").value;
		var cognome = document.getElementById("cognome").value;
		var msg = document.getElementById("msg").value;
		
		var mail_body = "Richiesta Informazioni da Web %0A %0A Richiedente: " + nome +" "+ cognome + "%0A Tipo richiesta: " + radioButton + "%0A %0A" + msg;
		mail_body += "\n msg";
		parent.location='mailto:' + mail_a +'?subject=Richiesta Informazioni da Web&amp&Body=' + mail_body;
	//	
	}
	
}

function validFormENG(){
	
	if (radioButton == ""){
		alert("You must select a request type !!!");
	}
	else if (document.getElementById('nome').value == ""){
		alert("You must insert the Name !!!");
	}
	else if (document.getElementById("cognome").value == ""){
		alert("You must insert the Last Name !!!");
	}
	else if (document.getElementById("msg").value == ""){
		alert("You must insert the message in 'Your request'  !!!")
	}
	else {
	//
		var mail_a = "";
		switch (radioButton) {
			case "Generica":
			mail_a="info@crealabnet.it";
			break;
			case "Commerciale":
			mail_a="sales@crealabnet.it";
			break;
			case "Tecnica":
			mail_a="support@crealabnet.it";
			break;
			case "Risorse Umane":
			mail_a="hr@crealabnet.it";
			break;
		} 
		var nome = document.getElementById("nome").value;
		var cognome = document.getElementById("cognome").value;
		var msg = document.getElementById("msg").value;
		
		var mail_body = "Richiesta Informazioni da Web %0A %0A Richiedente: " + nome +" "+ cognome + "%0A Tipo richiesta: " + radioButton + "%0A %0A" + msg;
		mail_body += "\n msg";
		parent.location='mailto:' + mail_a +'?subject=Richiesta Informazioni da Web&amp&Body=' + mail_body;
	//	
	}
	
}

function setRadioB(radioBID){
	radioButton = radioBID;
}