
function window_popup_einfach(link){
  benutzerfenster = window.open(link,'POPUP','width=670,height=570,screenX=200,screenY=0,dependent=yes,scrollbars=1')
  benutzerfenster.focus();
}

function show_elem(x,y){	
	document.getElementById(x).style.display='block';
	document.getElementById(y).style.display='none';
	if (x=="verti_menue_produkt"){
		document.getElementById("pa").style.backgroundImage='url("http://www.megalab.de/systems/templates/ada02/images/Navi_Reiter_Verlb.gif")';
	} else if (x=="verti_menue_einsatz"){		
		document.getElementById("pa").style.backgroundImage='url("http://www.megalab.de/systems/templates/ada02/images/Navi_Reiter_Verl_Einsatzb.gif")';
	}
}	
s = document.URL;	
if(s.match(/id=14&|id=15&|id=16&|id=17&|id=18&|id=19|id=20&|id=21&|id=22&/)){
	// Aktivieren des Einsatz-Reiters
	show_elem('verti_menue_einsatz','verti_menue_produkt');
}

window.setTimeout("show('verti_menue_produkt')", 10);

function showElem(e,i){
	var ico = document.createElement("IMG");
	ico.src = e;
	ico.id = i;
	ico.onmouseover = bildwechselA;
	ico.onmouseout = bildwechselI;
	document.getElementById( i ).removeChild(document.getElementById( i ).firstChild);
	Ausgabebereich = document.getElementById( i );
	Ausgabebereich.appendChild(ico);
}
function hide(elem){
	document.getElementById(elem).style.visibility ="hidden";
}
function show(elem){
	document.getElementById(elem).style.visibility ="visible";
}

	
							