// JavaScript Document
var gbl_idCatOpen='';

function view_foto(idFoto,p1) {
	with (document.form_front) {
		idF.value=idFoto;
		var parametri=lanfre_formCollection(document.form_front,'','');
		lanfre_getCode_get("gallery.php","box_fotobig",parametri,"",0,"","","","");
	}
}

function sendEmail() {
	with (document.form_front) {
		if (checkEmailFormat(email.value)) {
			var parametri=lanfre_formCollection(document.form_front,'','');
			lanfre_getCode_get("sendEmail.php","box_responseSend",parametri,"",0,"","","","");
		} else {
			alert('E-mail format: Invalid');
		}
	}
}



function menu_open(idC,p1) {
	if (idC==gbl_idCatOpen) {
		document.getElementById("listaProd_"+idC).style.display='none';
		gbl_idCatOpen='';
	} else {
		if (gbl_idCatOpen!='') document.getElementById("listaProd_"+gbl_idCatOpen).style.display='none';
		document.getElementById("listaProd_"+idC).style.display='block';
		
		gbl_idCatOpen=idC;
	}
}

function prod_view(idP,p1) {
	document.location.href='prodotti.php?idPrd='+idP;
}

function news_view(idN,p1) {
	document.location.href='news.php?idN='+idN;
}