document.getElementById("mainframe").style.display = "none";

var ft = document.getElementById("footer2");

/*
ft.style.width = "400px";
ft.style.position = "absolute";
ft.style.left = "50%";
ft.style.marginLeft = "-200px";
ft.style.marginTop = "200px";
ft.style.padding = "10px";
ft.style.textAlign = "center";
ft.style.backgroundColor = "#ACBBC3";

ft.innerHTML = "Seite wird geladen ...";
*/

setTimeout("doParse()", 1000);

function doParse() {
	document.getElementById("mainframe").style.display = "block";
	document.getElementById("footer2").style.display = "none";
}
