<!--
// JavaScript Document

var staystill = '';
var freeze = '';
var lastsub = '';

function productpopup(productid,mode)
{
	fenster = window.open('http://www.acteon.de.www.nexus-server.de/index.php?view=popup&product='+productid+'&mode='+mode, "productdetailpopup", "width=750,height=600,status=no,scrollbars=no,resizable=no");
	fenster.focus();
}

function activateMenu2()
{
	document.getElementById('menulevel2').style.visibility = 'visible';
	showArrow(true);

	document.getElementById('menu2level2').style.visibility = 'hidden';
}

function deactivateMenu2()
{
	//setTimeout("document.getElementById('menulevel2').style.visibility = 'hidden'",1500);
	document.getElementById('menulevel2').style.visibility = 'hidden';
	showArrow(false);
	if(freeze == 'media') document.getElementById('menu2level2').style.visibility = 'visible';
}

function activateMenu3(id)
{

	document.getElementById(id).style.visibility = 'visible';
	//Ergebnis = (document.Formular.Eingabe.value == "42") ? "RICHTIG!" : "FALSCH!";
	if(staystill != '')	document.getElementById(staystill).style.visibility = 'hidden';
	if(staystill == id) document.getElementById(id).style.visibility = 'visible';

	document.getElementById(id+'-link').style.fontWeight = 'bold';
	//Ergebnis = (document.Formular.Eingabe.value == "42") ? "RICHTIG!" : "FALSCH!";
	if(staystill != '')	document.getElementById(staystill+'-link').style.fontWeight = 'normal';
	if(staystill == id) document.getElementById(id+'-link').style.fontWeight = 'bold';

	//document.getElementById(id+'-link').style.fontWeight = 'bold';
}

function deactivateMenu3(id)
{

	if(id != staystill)
	{
		document.getElementById(id).style.visibility = 'hidden';
	}
	if(staystill != '')	document.getElementById(staystill).style.visibility = 'visible';

	if(id != staystill)
	{
		document.getElementById(id+'-link').style.fontWeight = 'normal';
	}
	if(staystill != '')	document.getElementById(staystill+'-link').style.fontWeight = 'bold';

	//if(id != staystill) document.getElementById(id+'-link').style.fontWeight = 'normal';
}

function showArrow(show)
{
	if(show)
	{
		document.getElementById('arrow').src = 'images/arrow_bottom.gif';
	} else
	{
		document.getElementById('arrow').src = 'images/blank.gif';
	}
}

function activate2Menu2()
{
	document.getElementById('menu2level2').style.visibility = 'visible';
	showArrow2(true);

	if(freeze == 'product')
	{
		document.getElementById('equipment-sub').style.visibility = 'hidden';
		document.getElementById('imaging-sub').style.visibility = 'hidden';
		document.getElementById('pharma-sub').style.visibility = 'hidden';
		document.getElementById('menulevel2').style.visibility = 'hidden';
		showArrow(false);
	}
}

function lanmenu()
{
	document.getElementById('conmenu').style.display = 'none'
	document.getElementById('lanmenu').style.display = (document.getElementById('lanmenu').style.display == 'block') ? 'none' : 'block';

	document.getElementById('conmenu-link').style.fontWeight = 'normal'
	document.getElementById('lanmenu-link').style.fontWeight = (document.getElementById('lanmenu-link').style.fontWeight == 'bold') ? 'normal' : 'bold';
	document.getElementById('lanmenu-link').blur();
}

function conmenu()
{
	document.getElementById('lanmenu').style.display = 'none'
	document.getElementById('conmenu').style.display = (document.getElementById('conmenu').style.display == 'block') ? 'none' : 'block';

	document.getElementById('lanmenu-link').style.fontWeight = 'normal'
	document.getElementById('conmenu-link').style.fontWeight = (document.getElementById('conmenu-link').style.fontWeight == 'bold') ? 'normal' : 'bold';
	document.getElementById('conmenu-link').blur();

}

function deactivate2Menu2()
{
//	setTimeout("document.getElementById('menu2level2').style.visibility = 'hidden'",500);
	document.getElementById('menu2level2').style.visibility = 'hidden'
	showArrow2(false);
	if(freeze == 'product')
	{
		document.getElementById('menulevel2').style.visibility = 'visible';
		if(staystill != '')
		{
			document.getElementById('equipment-sub').style.visibility = 'visible';
			document.getElementById('imaging-sub').style.visibility = 'visible';
			document.getElementById('pharma-sub').style.visibility = 'visible';
			document.getElementById(staystill).style.zIndex = 4;
		}
		showArrow(true);
	}
}

function showArrow2(show)
{
	if(show)
	{
		document.getElementById('arrow2').src = 'images/arrow_bottom.gif';
	} else
	{
		document.getElementById('arrow2').src = 'images/blank.gif';
	}
}

-->