

// Mailverschlüsselung 
function m(nam,adr){
	document.writeln("<a href=mailto:"+nam+"@"+adr+">"+nam+"@"+adr+"</a>");
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// Höhe Content-div's  
function hoehe(){	
		
	var y;
	if (self.innerHeight){ // all except Explorer
		y = self.innerHeight;
	}else if (document.documentElement && document.documentElement.clientHeight){// Explorer 6 Strict Mode
		y = document.documentElement.clientHeight;
	}else if (document.body){ // other Explorers
		y = document.body.clientHeight;
	}
	var m = document.getElementById("content");
	hoehe = y - 295 +'px'
	if(m){ m.style.height = hoehe ; }	

}

window.onresize=hoehe;
window.onload=hoehe;


