/***** © 2009 zeta software GmbH
Layout: Zeta Producer *****/

function height()
{
	var content = document.getElementById('content');
	var footer = document.getElementById('footer');
	footer.style.position = 'absolute';
	content.style.paddingBottom = (footer.clientHeight+30)+"px";
}
window.onload=height;