// ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -----
// overLayeR (GPL) Powered by Luca Ruggiero - www.lucaruggiero.it
// ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- -----
function MRW_scriviCookie(nomeCookie, valoreCookie, durataCookie)
{
	var scadenza = new Date();
	var adesso = new Date();
	scadenza.setTime(adesso.getTime() + (parseInt(durataCookie) * 60000));
	document.cookie = nomeCookie + '=' + escape(valoreCookie) + '; expires=' + scadenza.toGMTString() + '; path = /';
}
function MRW_leggiCookie(nomeCookie)
{
	if (document.cookie.length > 0)
	{
		var inizio = document.cookie.indexOf(nomeCookie + "=");
		if (inizio != -1)
		{
			inizio = inizio + nomeCookie.length + 1;
			var fine = document.cookie.indexOf(";", inizio);
			if (fine == -1) fine = document.cookie.length;
			return unescape(document.cookie.substring(inizio, fine));
		}
		else
		{
			return "";
		}
	}
	return "";
}
function overLayeR_Open()
{
	with (document)
	{
		write("<div id='overLayeR_Show'>");
		if (overLayeR_CLOSE == "UP")
		{
			write("<div id='overLayeR_Close'><a href='javascript:overLayeR_Close_Function()'><img src='http://www.ilcrotonese.it/sites/all/themes/crotonese/close_overlayer.gif' border='0'></a></div>");
		}
		if (overLayeR_IFRAME == "")
		{
			write("<a href='" + overLayeR_LINK + "' target='_blank' rel='nofollow'><img src='" + overLayeR_IMAGE + "' border='0'></a>");
		}
		else
		{
			write("<iframe marginwidth='0' marginheight='0' frameborder='0' scrolling='no' allowtransparency='true' src='" + overLayeR_IFRAME + "' width='" + overLayeR_WIDTH + "' height='" + overLayeR_HEIGHT + "'></iframe>");
		}
		if (overLayeR_CLOSE == "DOWN")
		{
			write("<div id='overLayeR_Close'><a href='javascript:void(0)' onclick='overLayeR_Close_Function()'><img src='http://www.ilcrotonese.it/sites/all/themes/crotonese/close_overlayer.gif' border='0'></a></div>");
		}
		write("</div>");
		getElementById("overLayeR_Show").style.position = "absolute";
		getElementById("overLayeR_Show").style.top = "50%";
		getElementById("overLayeR_Show").style.left = "50%";
		getElementById("overLayeR_Show").style.width = overLayeR_WIDTH + "px";
		getElementById("overLayeR_Show").style.height = overLayeR_HEIGHT + "px";
		getElementById("overLayeR_Show").style.margin = "-198px -280px";
		getElementById("overLayeR_Show").style.zIndex = "900000000000000000000000000";
		getElementById("overLayeR_Close").style.textAlign = "right";
	}
}
function overLayeR_Close_Function() 
{
	document.getElementById("overLayeR_Show").style.visibility = "hidden";
}
if (MRW_leggiCookie("overLayeR_COOKIE") == "")
{
	overLayeR_Open();
	window.setTimeout("overLayeR_Close_Function()", overLayeR_SECONDS + "000");
}
if (overLayeR_COOKIE > 0)
{
	MRW_scriviCookie("overLayeR_COOKIE", overLayeR_COOKIE, overLayeR_COOKIE);
}

