// var isHome = (this.location.pathname == "/index.jsp") ? true : false;
if (typeof dscr == "undefined") dscr = "Benvenuti in Sicilia";
var isHome = (dscr == "Benvenuti in Sicilia") ? true : false;
var oggi = new Date();
var topData =  oggi.toLocaleString().split(" ");
var topDataFormat = topData[0].substring(0,3) + " " + topData[1] + " " + topData[2].substring(0,3) + " " + topData[3];

// autologin vero
function topAutoLogin() {
	var pagina = self.location.pathname;
	var ricerca = self.location.search;
	var redirect = pagina + ricerca;
	if (redirect.indexOf("login.jsp")!=-1) SetCookie("cAutoLoginUtente","0");
	if (username == "" && GetCookie("cAutoLoginUtente") == "1") {
		redirect = '/utenti/login.jsp?redirect='+escape(redirect) + '&err=' + ((typeof forum!="undefined") ? 'forum' : '1');
		this.location.replace(redirect);
	}
	else if (typeof forum!="undefined") {
		if (GetCookie("cLoginUtente") == "1" && username=='') this.location.replace('/forum/login.php?login=true&redirect='+escape(redirect));
		else if (GetCookie("cLoginUtente") == "0"  && username!='') {
			this.location.replace('/forum/login.php?logout=true&redirect='+escape(redirect));
		}
	}
}
topAutoLogin();
function topUserLogin(t) {
	var pagina = self.location.pathname;
	var ricerca = self.location.search;
	var redirect = '/utenti/login.jsp?';
	var isforum = (typeof forum!="undefined" || ricerca.indexOf('err=forum')!=-1);
	if (t==0) redirect += 'err=logout';
	else if (t==1 && isforum) redirect += 'err=forum';
	else if (t==2) redirect += 'err=change';
	if (isforum) redirect += '&redirect=' + escape(pagina+ricerca);
	self.location.href = redirect;
}

document.write('' +
	'<table width="760" border=0 align=center bgcolor=#FFFFFF cellpadding=0 cellspacing=1>' +
	'<tr>' +
	'<td bgcolor="#FAA219" valign="top" style="padding-bottom:5px;">');
var quale_barra = (this.location.pathname.indexOf('/europremi/') >= 0) ? "europremi" : "myhome";
makeBar(quale_barra);
document.write('' +
	'</td>' + 
	'</tr>' + 
	'</table>');
