
// 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;") 

// Links
<!--
function newwindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);}
//-->

// Status
<!--
defaultStatus = "w w w . s u b s o n i c a . c j b . n e t"
//-->

// Pagina Iniziale
function paginaIniziale() {
document.body.style.behavior='url(#default#homepage)';
document.body.setHomePage('http://www.m0r94n.tk')
}

// 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)
}
