
// Fenster öffnen
function fenster (url, breite, hoehe) {
	if (!hoehe) hoehe = 580;
	window.open(url, "Tools", "height = " + hoehe + ", width = " + breite + ", scrollbars = yes, resizable = yes");
}

//Link href
function linkFenster (link) {
	opener.location.href = link;
	window.close();
}

//Link href
function Link (link) {
	location.href = link;
}

// Sprungmenü
function JumpMenu(link) {
  location.href = link;
}

// Reklame Layer
function reklameLayerAn () {
	if (document.getElementById('reklame_layer')) document.getElementById('reklame_layer').style.display = 'block';
}

function reklameLayerAus () {
	if (document.getElementById('reklame_layer')) document.getElementById('reklame_layer').style.display = 'none';
}
