function weiterleitung(Adresse)
{
			window.location.href=Adresse;
}	

//Funktion zum Öffnen des Fensters

function popUpMediaPlayer(page, titel, width, height){
	var doPopUpX = (screen.width/2)-(width/2);
	var doPopUpY = (screen.height/2)-(height/2);

	var pos = "left="+doPopUpX+",top="+doPopUpY;

	window.open(page,titel, "width=" + width + ", " + "height=" + height + ", resizable=0, " + pos);
}