<!--
if (window.Event){					// Only Netscape will have the CAPITAL E.
	document.captureEvents(Event.MOUSEUP); 		// catch the mouse up event
}

function nocontextmenu(){  				// this function only applies to IE4, ignored otherwise.
	event.cancelBubble = true;
	event.returnValue = false; 
	return false;
}

function norightclick(e){				// This function is used by all others
	if (window.Event){				// again, IE or NAV?
		if (e.which == 2 || e.which == 3){
   			return false;
 		}
	}
	else if (event.button == 2 || event.button == 3){
		var msg = "---------------------------------\n";
		msg = msg + "           BENVENUTO\n";
		msg = msg + "                    su\n";
		msg = msg + "....::::  WWW.ANCELLOTTI.NET  ::::....\n";
		msg = msg + "---------------------------------\n";
		alert(msg)		
		event.cancelBubble = true;
		event.returnValue = false;
		return false;
 	}
}

function CancelEvent(){
	return false;
}

document.oncontextmenu = nocontextmenu;  		// for IE5+
document.onmousedown = norightclick;  			// for all others
document.ondragstart = CancelEvent;			// no dragging
document.onselectstart = CancelEvent;			// no selecting


if (self.top.frames.length == 0){
	document.onload = self.top.resizeTo(window.screen.availWidth + 8, window.screen.availHeight + 8); self.top.moveTo(-4, -4);
}

function Status(){
	window.status = "www.ancellotti.net # © Copyright 2005/2006 # All rights reserved";
	return(true);
}

document.onmouseover = Status;
-->