function msg1() { alert("Seite steht noch nicht zur Verfügung!"); return false; }
function msg2() { alert("Seite steht momentan nicht zur Verfügung!"); return false; }
function msg3() { alert("Seite ist gerade in Bearbeitung!"); return false; }
function msg4() { alert("Seite wird in Kürze aktualisiert!"); return false; }

function pop_up(url)
{
	var width = screen.availWidth / 1.5;
	var height = screen.availHeight / 1.5;
	var left = screen.width / 2 - width / 2;
	var top = screen.height / 2 - height / 2;
	if (left < 0) left = 0;
	if (top < 0) top = 0;
	return window.open(url, 'popup', 'width='+width+',height='+height+',left='+left+',top='+top+',location=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes');
}
