function submenue(bild) {
	var inhalt = '';
	if(bild == 'aktuelles') {
		inhalt = '<a href="index.php?sub=news&menue=aktuelles">News</a> | <a href="index.php?sub=stellenangebote&menue=aktuelles">Stellenangebote</a>';
	} else if(bild == 'tabau') {
		inhalt = '<img src="images/blank.gif" width="103" height="10" border="0" /><a href="index.php?sub=tabau&menue=tabau">Schl&uuml;sselfertig</a>';
	} else if(bild == 'taservice') {
		inhalt = '<img src="images/blank.gif" width="209" height="10" border="0" /><a href="index.php?sub=taservice&menue=taservice">Optimale Wartung</a>';
	} else if(bild == 'ueberuns') {
		inhalt = '<img src="images/blank.gif" width="315" height="10" border="0" /><a href="index.php?sub=ueberuns&menue=ueberuns">Tokheim-Steinebach</a> | <a href="index.php?sub=zertifikate&menue=ueberuns">Zertifikate</a>';
	} else if(bild == 'kontakt') {
		inhalt = '<img src="images/blank.gif" width="421" height="10" border="0" /><a href="index.php?sub=kontakt&menue=kontakt">Kontakt</a> | <a href="index.php?sub=impressum&menue=kontakt">Impressum</a> | <a href="index.php?sub=agb&menue=kontakt">AGB</a> | <a href="index.php?sub=agbeinkauf&menue=kontakt">AGB Einkauf</a>';
	} else {
		inhalt = '<img src="images/blank.gif" width="100" height="20" border="0" />';
	}
	document.getElementById("topmenue_sub").innerHTML = inhalt;
}

function over(elem, bild, aktiv) {
	out(aktiv);
	elem.src = 'images/but_' + bild + '_r.gif';
	submenue(bild);
}

function out(aktiv) {
	if(aktiv == 'home') {
		document.getElementById("home").src = 'images/but_home_r.gif';
	} else {
		document.getElementById("home").src = 'images/blank.gif';
	}
	if(aktiv == 'aktuelles') {
		document.getElementById("aktuelles").src = 'images/but_aktuelles_r.gif';
	} else {
		document.getElementById("aktuelles").src = 'images/blank.gif';
	}
	if(aktiv == 'tabau') {
		document.getElementById("tabau").src = 'images/but_tabau_r.gif';
	} else {
		document.getElementById("tabau").src = 'images/blank.gif';
	}
	if(aktiv == 'taservice') {
		document.getElementById("taservice").src = 'images/but_taservice_r.gif';
	} else {
		document.getElementById("taservice").src = 'images/blank.gif';
	}
	if(aktiv == 'ueberuns') {
		document.getElementById("ueberuns").src = 'images/but_ueberuns_r.gif';
	} else {
		document.getElementById("ueberuns").src = 'images/blank.gif';
	}
	if(aktiv == 'kontakt') {
		document.getElementById("kontakt").src = 'images/but_kontakt_r.gif';
	} else {
		document.getElementById("kontakt").src = 'images/blank.gif';
	}
	if(aktiv == 'tslogin') {
		document.getElementById("tslogin").src = 'images/but_tslogin_r.gif';
	} else {
		document.getElementById("tslogin").src = 'images/blank.gif';
	}
}

var fenster = 0;

function newWindow(url, breite, hoehe, left, top, scroll, menu, tool, resize) {
	if(fenster && !fenster.closed) fenster.close();
	if(!left && !top) {
		left = (screen.width - breite) / 2;
		top = (screen.height - hoehe) / 2;
	}
	fenster = window.open(url, "fenster", "width=" + breite + ",height=" + hoehe +
						  				  ",left=" + left + ",top=" + top + ",scrollbars=" + scroll +
						  				  ",menubar=" + menu + ",toolbar=" + tool + ",resizable=" + resize);
	fenster.focus();
}

function popfenster(url, titel, breite, hoehe, left, top, scroll, menu) {
	if(!left && !top) {
		left = (screen.width - breite) / 2;
		top = (screen.height - hoehe) / 2;
	}
  bild = window.open(url, titel, "width=" + breite + ",height=" + hoehe + ",left=" + left + ",top=" + top + ",scrollbars=" + scroll + ",menubar=" + menu + ", resizable=0");
  bild.document.writeln('<html><head><title>' + titel + '</title></head>');
  bild.document.writeln('<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor="White">');
  bild.document.writeln('<a href="javascript:self.close()"><img src="' + url + '" border=0 alt="schliessen"></a>');
  bild.document.writeln('</body></html>');
  bild.focus();
}
function aufklapp(nid) {
	if(document.getElementById("news_" + nid).style.display == 'none') {
		document.getElementById("news_" + nid).style.display = 'block';
	} else {
		document.getElementById("news_" + nid).style.display = 'none';
	}
}
