
<!--//
// (c) by StephanKistler.de

function ausblenden(id) {
	document.getElementById(id).style.display = 'none';
}

function einblenden(id) {
	document.getElementById(id).style.display = 'inline';
}

function aufklappen(id) {
	var div_element = document.getElementById("div_" + id);
	var a_element = document.getElementById("a_" + id);
	var img_element = document.getElementById("img_" + id);
	
	a_element.setAttribute("href","javascript:zuklappen('" + id + "');");
	img_element.setAttribute("src","http://localhost/new_www.degerndorf-online.de/images/ordner_auf.gif");
	einblenden("div_" + id);
}

function zuklappen(id) {
	var div_element = document.getElementById("div_" + id);
	var a_element = document.getElementById("a_" + id);
	var img_element = document.getElementById("img_" + id);
	
	a_element.setAttribute("href","javascript:aufklappen('" + id + "');ausblenden(\'div" + id + "_1\');");
	img_element.setAttribute("src","http://localhost/new_www.degerndorf-online.de/images/ordner_zu.gif");
	ausblenden("div_" + id);
}


function popup(URL, title, width, height, scroll) {
	window.open(URL,title,'height=' + height + ',width=' + width + ',toolbar=0,scrollbars=' + scroll +',menubar=0,perosnalbar=0,resizable=1');
}


var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
var pageTracker = _gat._getTracker("UA-8559441-1");
pageTracker._trackPageview();
} catch(err) {}

//-->
