<!-- // Begin Data
function displayDate() {
	var this_day = new Array(7);
    this_day[1]  = "Lunedi";
    this_day[2]  = "Martedi";
    this_day[3]  = "Mercoledi";
    this_day[4]  = "Giovedi";
    this_day[5]  = "Venerdi";
    this_day[6]  = "Sabato";
    this_day[0]  = "Domenica";
	var this_month = new Array(12);
    this_month[0]  = "Gennaio";
    this_month[1]  = "Febbraio";
    this_month[2]  = "Marzo";
    this_month[3]  = "Aprile";
    this_month[4]  = "Maggio";
    this_month[5]  = "Giugno";
    this_month[6]  = "Luglio";
    this_month[7]  = "Agosto";
    this_month[8]  = "Settembre";
    this_month[9]  = "Ottobre";
    this_month[10] = "Novembre";
    this_month[11] = "Dicembre";
  var today = new Date();
  var dayname = today.getDay();
  var day   = today.getDate();
  var month = today.getMonth();
  var year  = today.getYear();
  if (year < 1000) {
    year += 1900;
  }
  return(this_day[dayname]+" "+day+" "+this_month[month]+", "+year);
}
var browserName = navigator.appName;
browserVer = parseInt ( navigator.appVersion );
browser = "0";
if ( browserName == "Netscape" && browserVer >= 4 ) browser="N4";
if ( browserName == "Netscape" && browserVer < 4 ) browser="N3";
if ( browserName == "Microsoft Internet Explorer" && browserVer >=4 ) browser="IE4";
if ( browserName == "Microsoft Internet Explorer" && browserVer < 4 ) browser="IE3";
    function makeStart(){
if (browserName == "Netscape") {alert("This function is only available on Microsoft Internet Explorer");}
        else { if (browserName != "Netscape"){alert("Please select 'Open this file from its current location' when asked what you would like to do with the file");}
        location.href = "makehome.reg";
    }}
//  End Data -->


<!-- // Begin StatusBar
defaultStatus = "Storia Libera";
//  End StatusBar -->


<!-- // Begin Location Menu
var path = "";
var href = document.location.href;
var s = href.split("/");
for (var i=2;i<(s.length-1);i++) {
path+=s[i]+" > ";
}
//path+=document.title;
var url = path;
//  End Location Menu -->


<!-- // Begin PopUp
function popUp(url) 
{
	sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=670,height=450');
	self.name = "mainWin"; 
}
//  End PopUp -->


<!-- // Begin setCSS
function createCookie(name,value,days) {
if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = '; expires='+date.toGMTString();
  }
  else expires = '';
  document.cookie = name+'='+value+expires+'; path=/';
}
function readCookie(name) {
var nameEQ = name + '=';
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
  }
  return null;
}
// memorizzazione del foglio di stile scelto e aggiornamento della pagina
function setCSS(nome_file_css) {
createCookie('skinUtente',nome_file_css,365);
location.reload();
}
// impostazione del foglio di stile
function setCSShref(nome_file_css) {
var link_ = document.getElementsByTagName("link");
for ($i=0;$i<link_.length;$i++)
if(link_[$i].media=="screen") link_[$i].href="/cssjs/"+nome_file_css+".css";
}
// scelta del foglio di stile
window.onload = function() {
nome_file_css = readCookie('skinUtente');
if(nome_file_css) setCSShref(nome_file_css);
}
//  End setCSS -->


<!-- // No Print Text
function noprintText(){

	var n = noprintText.arguments.length;
	for(i=0; i<n; i++){
		id1 = noprintText.arguments[i++];
		id2 = noprintText.arguments[i];

		document.getElementById(id1).style.display = 'none';
		document.getElementById(id2).style.display = 'inline';
	}
}
// No Print Text -->