<!-- // 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 = "Club Forza Italia Marco d'Aviano";
//  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 -->

function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("Club Marco d\'Aviano\n    StoriaLibera.it");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
