// JavaScript Document

function aggiusta_form_ordine(){
var priv_azienda = document.form_ordini.priv_azienda.value;
var gia_cliente= document.form_ordini.gia_cliente.checked;

var CampoCognome = document.getElementById('Cognome_Ragione');
var CampoNome = document.getElementById('Nome_Piva');
var tab_nuovo_cliente = document.getElementById('tab_nuovo_cliente');

if (priv_azienda == "Privato"){
	CampoCognome.innerHTML = "<label>"+ COGNOME_LANG+" (*): </label>";
	CampoNome.innerHTML = "<label>"+ NOME_LANG+" (*): </label>";
	}
	else{
	CampoCognome.innerHTML = "<label>"+RAGSOC_LANG+" (*): </label>";
	CampoNome.innerHTML = "<label>"+PIVA_LANG+" (*): </label>";
	}

if (gia_cliente){
	tab_nuovo_cliente.style.visibility = '';
	tab_nuovo_cliente.style.display = 'none';
	//document.getElementById('prova').style.visibility= 'hidden';
}
else {
		tab_nuovo_cliente.style.visibility = 'visible';
		tab_nuovo_cliente.style.display = '';
}
}

function check_form_ordine(){
var stringa_ordine = INSORDINE_LANG;
var Cognome = document.getElementById('cogn_rag').value;
var Nome = document.getElementById('nom_piva').value;
var Ordine = document.getElementById('ordine').value;
var gia_cliente= document.form_ordini.gia_cliente.checked;
var Tel = document.getElementById('tel').value;
var Email_1 = document.getElementById('email_1').value;
var Email_2 = document.getElementById('email_2').value;
var privacy = document.form_ordini.privacy.checked;

formCompleta = (	Ordine != stringa_ordine
		&& Ordine != ""
		&& Nome != ""
		&& Cognome != "" 
		&& (gia_cliente || Tel != "" || ((Email_1 != "") && (Email_2 != "")) )
		);

if (!formCompleta)
	{
	alert(CAMPIOBBLIG_LANG);
	return false;
	}
	
var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
var controllo_sintassi = filter.test(Email_1);

var emailCorretta = (gia_cliente || Tel != "" || ((Email_1 == Email_2) && controllo_sintassi));

if (!emailCorretta)
	{
	alert(EMAIL_ERR);
	return false;
	}

privacy_ok = privacy || gia_cliente;

if (!privacy_ok)
	{
	alert(PRIVACY_ERR);
	return false;
	}
	
if (formCompleta && emailCorretta && privacy_ok)
	return true;
else return false;
}

function check_form_feedback(){
var Nome = document.getElementById('sender_name').value;
var Email = document.getElementById('sender_email').value;
var Messaggio = document.getElementById('message').value;

var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
var controllo_sintassi = filter.test(Email);

var emailCorretta = (controllo_sintassi);
formCompleta = ( Nome != "" 
				&& Email != ""
				&& Messaggio != "");
if (!formCompleta)
	{
	alert(CAMPIOBBLIG_LANG);
	return false;
	}
if (!emailCorretta)
	{
	alert(EMAIL_ERR);
	return false;
	}
if (formCompleta && emailCorretta)
	return true;
}

function apriPopUpIstruz(apri)
{
var stile = 'top=10px, left=10px, width=430px, height=700px, status=no, menubar=no, toolbar=no,resizable=no, scrollbars=yes,location=no';
        window.open(apri, '', stile);
}

function apriPopUpThumbs(immagine) {
	var stile = 'top=10px, left=10px, status=no,menubar=no,toolbar=no, resizable=yes,scrollbars=auto,location=no, width=200px, height=200px';
	finestra=window.open('','win',stile);
	finestra.document.write("<html><body bgcolor='#99CC33'><img src='"+immagine+"' name='immagine' onLoad='javascript: window.resizeTo(immagine.width+50, immagine.height+50);' /></body></html>");
	finestra.document.close();
	finestra.focus();
}

function apriPopUp1(nome_file,nome_win)
{
window.open(nome_file,nome_win,'width=600,height=480,menubar=yes,resizable=no,status=no,location=no,toolbar=no,scrollbars=yes,top=100,left=100');
return false;
}

function apriPopUp2(nome_file,nome_win)
{
window.open(nome_file,nome_win,'width=400,height=700,menubar=yes,resizable=no,status=no,location=no,toolbar=no,scrollbars=yes,top=10,left=10');
return false;
}
function apriPopUp4(nome_file)
{
var stile = 'width=450px,height=355px,menubar=no,resizable=no,status=no,location=no,toolbar=no,scrollbars=yes,top=50px,left=100px';
window.open(nome_file,'',stile);
}





