// Mantello
function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			oncontextmenu='return false';
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			oncontextmenu='return false';
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;") 

// Indice
if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;

function imgON(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "ON.src");
	}
}
function imgOFF(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "OFF.src");
	}
}

// Links
<!--
function newwindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);}
//-->

// Status
<!--
defaultStatus = "PallavoloTeatina.net"
//-->

// Pagina Iniziale
function paginaIniziale() {
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.pallavoloteatina.net')
}

// Data
function clock() {
var days = new Array(7)
days[1] = "DOMENICA";
days[2] = "LUNEDI";
days[3] = "MARTEDI";
days[4] = "MERCOLEDI";
days[5] = "GIOVEDI";
days[6] = "VENERDI";
days[7] = "SABATO";

var months = new Array(12)
months[1] = "GENNAIO";
months[2] = "FEBBRAIO";
months[3] = "MARZO";
months[4] = "APRILE";
months[5] = "MAGGIO";
months[6] = "GIUGNO";
months[7] = "LUGLIO";
months[8] = "AGOSTO";
months[9] = "SETTEMBRE";
months[10] = "OTTOBRE";
months[11] = "NOVEMBRE";
months[12] = "DICEMBRE";

var today = new Date()
var day = days[today.getDay() + 1]
var month = months[today.getMonth() + 1]
var date = today.getDate()
if (date<10)
date="0"+date
var year = today.getYear()
if (year < 1000)
year+=1900

document.write(day + " "  + date + " " + month + " " + year)
}

//Bookmark
var bookmarkurl="http://www.pallavoloteatina.net"
var bookmarktitle="PALLAVOLO TEATINA"

function addbookmark() {
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
