
function FensterOeffnen (Adresse, FensterTyp) 
{
	if (FensterTyp == "Steckbrief") {
		Fenster1 = window.open(Adresse, "", "width=720,height=305,left=100,top=100");
  		Fenster1.focus();
	}
	if (FensterTyp == "Erklaerung") {
		Fenster1 = window.open(Adresse, "", "width=320,height=255,left=100,top=100");
  		Fenster1.focus();
	}
}

function StatusSetzen (Text)
{
	window.defaultStatus = Text;
}
