<!--
function div_ref_style (id) {
   if      (document.layers)         return document.layers[id];              
   else if (document.all)            return document.all[id].style;           
   else if (document.getElementById) return document.getElementById(id).style;
   else                              return null;        
}

function geScrollt() {
	if (self.pageYOffset) 				return self.pageYOffset;
	else if (document.documentElement && document.documentElement.scrollTop) return document.documentElement.scrollTop;
	else if (document.body) 			return document.body.scrollTop;
}

function hoehe() {
	if (self.innerHeight) 				return (self.innerHeight-22); // all except Explorer
	else if (document.documentElement && document.documentElement.clientHeight) return (document.documentElement.clientHeight-22); // Explorer 6 Strict Mode
	else if (document.body) 			return (document.body.clientHeight-22); // other Explorers
}

function init() {
	div_ref_style("fusszeile").position = 'absolute';
	div_ref_style("fusszeile").left = 0 + (document.documentElement? "px" : "");
	var aktiv = window.setInterval("positionieren()",1);
}
function initcpg() {
	var cp = document.cookie.split("sozialinfo=");
	if(cp.length>1) {
		cp = (cp[1]+";").split(";")[0].split(" ");
		cp = cp-1;
	}
	cpg.openPanel(cp);
	document.cookie="sozialinfo="+" "+"; path=/;";
}
function positionieren() {
	div_ref_style("fusszeile").top = hoehe()+geScrollt() + (document.documentElement? "px" : "");
}

function PrintView () {
	window.print();
}


