function OpenPopUp( Img )
{
	PathImg='img/common/fotogallery/popup/';
	window.open( "../../popup.htm?Img=" + PathImg + Img, 'PopupMamosa', 'width=20 height=20, top=200, left=300'); 
//	window.open( "popup.htm?Img=img/common/fotogallery/popup/castelnuovo1.jpg", 'PopupMamosa', 'width=20 height=20, top=200, left=300'); 
}
function OpenPopUpFiore( Img )
{
	PathImg='img/common/fiore/';
	window.open( "../../popup.htm?Img=" + PathImg + Img, 'PopupMamosa', 'width=20 height=20, top=200, left=300'); 
//	window.open( "popup.htm?Img=img/common/fotogallery/popup/castelnuovo1.jpg", 'PopupMamosa', 'width=20 height=20, top=200, left=300'); 
}
function OpenPopUpHome( Img )
{
	PathImg='img/common/fotogallery/popup/';
	window.open( "popup.htm?Img=" + PathImg + Img, 'PopupMamosa', 'width=20 height=20, top=200, left=300'); 
//	window.open( "popup.htm?Img=img/common/fotogallery/popup/castelnuovo1.jpg", 'PopupMamosa', 'width=20 height=20, top=200, left=300'); 
}


function ZoomCartina()
{
	window.open( "../../cartina.htm", 'CartinaMamosa', 'width=470, height=550, top=200, left=300');
}

function ShowDiv( Oggetto, Left, Top )
{
var FullLeft;
var FullTop;
if( document.body.clientWidth<274 )
{
	FullLeft = 0;
}
else
{
	FullLeft = Math.floor((document.body.clientWidth-790)/2);
}
if( document.body.clientHeight<480 )
{
	FullTop = 0;
}
else
{
FullTop =  Math.floor((document.body.clientHeight-490)/2);
}
	Oggetto.YPos(FullTop+Top);
	Oggetto.XPos(FullLeft+Left);
//Oggetto.Css.visibility='visible';
//alert("left=" + FullLeft);
}


var InitDone=false;
var OverMenu=0;
var ClearMenuTimer=0;

var ns = (navigator.appName.indexOf('Netscape')!=-1)?1:0;
var ie = (document.all) ? 1:0;
var browser = ((ns || ie) && parseInt(navigator.appVersion)>=4);

function f_XPos(X)
{
	this.X=X;
	this.Css.left=this.X;
}

function f_YPos(Y)
{
	this.Y=Y;
	this.Css.top=this.Y;
	return;
}

function f_ZPos(Z)
{
	this.Z=Z;
	this.Css.zIndex=this.Z;
	return;
}

function f_Visible()
{
	if (this.Css.visibility=="hidden" || this.Css.visibility=="hide")
		return true;
	else
		return false;
}

function InitItem(Name, StringSpace)	// Associa, ad ogni oggetto, le proprieta' del relativo div
{
	this.Css = eval(StringSpace+'.document.getElementById("div'+Name+'").style');
	this.X = (ns) ? this.Css.left : this.Css.pixelLeft;
	this.Y = (ns) ? this.Css.top : this.Css.pixelTop;
	this.Z = (ns) ? this.Css.zIndex : this.Css.zIndex;	
	this.XPos = f_XPos;
	this.YPos = f_YPos;
	this.ZPos = f_ZPos;
	return this;
}
Cliccato = 0;
function CambiaCartina()
{
	if(Cliccato!=0)
	{
		Src='img/common/dove_siamo/cartina1.jpg';
		W=467;
		H=550;		
		Cliccato=0;
	}
	else
	{
		Src='img/common/dove_siamo/liguria.gif';
		W=460;
		H=414;
		Cliccato=1;		
	}
	if(ns)
		document['Cartina'].src=Src;
	else
		document.all['Cartina'].src= Src;
		document.all['Cartina'].width = W;
		document.all['Cartina'].height = H;		
}