var ops_s; 
ops_s = 400; 
function myerror() {
	return true;
}
onerror = myerror;
if (typeof(screen)!="undefined") {
	if (screen.Height > 1) {
		ops_s = screen.Height - 100;
	}
}
if (typeof(window.innerHeight)!="undefined") {
	if (window.innerHeight > 1) {
		ops_s = window.innerHeight;
	}
}
if (ops_s >= 400) 
//set this variable to 1 if you wish the URLs of the highlighted menu to be displayed in the status bar
var display_url=0
function showquadreclicdreta() {
	var rightedge=document.body.clientWidth-event.clientX;
	var bottomedge=document.body.clientHeight-event.clientY;
	if (rightedge<quadreclicdreta.offsetWidth) {
		quadreclicdreta.style.left=document.body.scrollLeft+event.clientX-quadreclicdreta.offsetWidth;
	} else {
		quadreclicdreta.style.left=document.body.scrollLeft+event.clientX;
	}
	if (bottomedge<quadreclicdreta.offsetHeight) {
	quadreclicdreta.style.top=document.body.scrollTop+event.clientY-quadreclicdreta.offsetHeight;
	} else {
		quadreclicdreta.style.top=document.body.scrollTop+event.clientY;
	}
	quadreclicdreta.style.visibility="visible";
	return false;
}

function hidequadreclicdreta() {
	quadreclicdreta.style.visibility="hidden";
}




