function MatPo_Weiterleitung(Adresse, Sekunden)
{
	InSekunden = Sekunden + '000';
	ZuAdresse = "window.location.href='"+Adresse+"'";
  window.setTimeout(ZuAdresse, InSekunden);
}	

function MatPo_Ausblenden (BlockID) {  
	document.getElementById(BlockID).style.display = 'none';
}

function MatPo_Einblenden (BlockID) {  	
	document.getElementById(BlockID).style.display = 'block';
}


function MatPo_PopUp (PopUpLink, PopUpTitel, PopUpBreite, PopUpHoehe) {
	PopUp = window.open(PopUpLink, PopUpTitel, "height=" + PopUpHoehe + ", width=" + PopUpBreite + ", scrollbars=yes");
	PopUp.focus();
}