<!--
/****************************************************************
// mouseclick-function
***************************************************************/

/*
if (document.layers)
{
	window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
	window.onmousedown=rightclick;
	window.onmouseup=rightclick;
	function rightclick(e)
	{
		if (e.which == 3) 
		{
		alert("DAS SUPERQUIZ ZUM TRAUMAPPARTMENT"); 
    return false;
		}
		else
		{
		return true;
		}
	}
}

if (document.all)
{
		function click() 
		{
			if (event.button==2) 
			{
			alert("DAS SUPERQUIZ ZUM TRAUMAPPARTMENT")
			}
			if (event.button==3)
			{
			alert("DAS SUPERQUIZ ZUM TRAUMAPPARTMENT")
			}
		}
document.onmousedown=click
}
*/

/* switch disabletextselection */
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
	target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
	target.style.MozUserSelect="none"
else //All other route (ie: Opera)
	target.onmousedown=function(){return false}
target.style.cursor = "default"
}

/* switch layer */
function switchlayer(subj) {
  document.getElementById('sector'+subj).style.height=(document.getElementById('sector'+subj).style.height!="100%")? "100%" : "1px";
  document.getElementById('sector'+subj).style.visibility=(document.getElementById('sector'+subj).style.visibility!="visible")? "visible" : "hidden";
}

/* go to anchor */
function gotoanchor(target) {
var y = document.getElementById(target).offsetTop; y = y+180;
window.scrollTo(0,y);
}

//-->
