// JScript source code
function CambiaLingua(IdLingua)
{
	if (IdLingua=="1")
	{
		document.FrmLng.sIdLingua.value="2";
	}
	else
	{
		document.FrmLng.sIdLingua.value="1";
	}
	
	document.FrmLng.submit();
	
	alert("Coming soon");
}
//------------------------------------
function VediCategorie(IdFamiglia)
{
	document.FrmCatProd.IdFamiglia.value=IdFamiglia;
	document.FrmCatProd.submit();
}
//------------------------------------
function TDSwitchColor(IdTd,Colore)
{
	document.getElementById(IdTd).style.backgroundColor=Colore;
}
//------------------------------------
function SwitchImg(IdImg,Src)
{
	document.getElementById(IdImg).src=Src;
}
//------------------------------------
function NoteLegali(sIdLingua)
{
	newwin = window.open("noteLegali.asp?sIdLingua=" + sIdLingua +"","NoteLegali","menubar=no,toolbar=0,resizable=yes,scrollbars=1,width=480,height=480"); 
	newwin.focus();
}
//------------------------------------
function Appuntamento(Mese)
{
	document.FrmCalendario.submit();
}