// JavaScript Document

function showHideDiv(lediv, showhide){
	if(document.getElementById(lediv)){
		if(document.getElementById(lediv).style && document.getElementById(lediv).style.display){
			displayvalue = showhide == 1 ? "block" : "none";
			document.getElementById(lediv).style.display = displayvalue;
		}
	}
}

function popupBild(bild) {
	var pfad = "/bilder/extras/";
	var popupb = window.open(pfad + bild, "bildpopup","width=520,height=370,left=200,top=200,scrollbars=no,resizable=yes");
}


