//<!-- Spalte rechts -->

var message = "rechte Maustaste gesperrt";
var rechtemaustasteaus = false;

window.defaultStatus = "    Willkommen in der Rechtsanwaltskanzlei Maaßen & Maaßen !";

///////////////////////////////////
function clickIE()
{
	if (document.all) 
	{
		//alert(message);
		return false;
	}
}

function clickNS(e) 
{
	if ( document.layers || (document.getElementById && ! document.all) ) 
	{
		if (e.which == 2 || e.which == 3 ) 
		{
			return(false);
		}
	}
}

if ( rechtemaustasteaus == true )
{
	if (document.layers) 
	{
		document.captureEvents(Event.MOUSEDOWN);
		document.onmousedown = clickNS;
	}
	else
	{
		document.onmouseup = clickNS;
		document.oncontextmenu = clickIE;
	}
	
	document.oncontextmenu = new Function("return false");
}

function ChgMen(m,n)
{
	if ( m == 1) {
		document.getElementById(n).className = document.getElementById(n).className + 'over';
	} else {
		document.getElementById(n).className = document.getElementById(n).className.replace(/over/,"");
	}
}
//<!-- Spalte rechts -->


