// JavaScript Document
function languageIT()
{
		document.dati01.hdnlingua.value="IT";
		document.dati01.submit();
}

function languageEN()
{
		document.dati01.hdnlingua.value="EN";
		document.dati01.submit();
}

function languageDE()
{
		document.dati01.hdnlingua.value="DE";
		document.dati01.submit();
}

function doveSiamo()
{
	var w;
	w=OpenPopUp("dovesiamo.asp","dovesiamo",425+25,350+25);
}
function contatti()
{
	var w;
	w=OpenPopUp("contatti.asp","contatti",770,500);
}
function OpenPopUp(url,name,width,height)
{
	width=(width*1)+50;
	height=(height*1)+50;
	var left=(screen.width-width)/2;
	var top=(screen.height-height)/2;
	var w=window.open(url,name,"toolbar=0,location=1,directories=1,menuBar=0,scrollbars=1,resizable=0,width="+width+",height="+height+",left="+left+",top="+top);
	return w;
}
