function show(choice)
{
	function erfolg(txt)
	{
		document.getElementById("innercontent").innerHTML = txt;
	}
	function fehler(msg)
	{
		document.getElementById("innercontent").innerHTML = msg;
	}
	
	var ajax = new AjaxX();
	if(choice == "physio")
	{
		ajax.url = "inhalt/physio.php";
	}
	if(choice == "sitemap")
	{
		ajax.url = "inhalt/sitemap.php";
	}
	if(choice == "massage")
	{
		ajax.url = "inhalt/massage.php";
	}
	if(choice == "informationen")
	{
		ajax.url = "inhalt/informationen.php";
	}
	if(choice == "philosophie")
	{
		ajax.url = "inhalt/philosophie.php";
	}
	if(choice == "team")
	{
		ajax.url = "inhalt/team.php";
	}
	if(choice == "home")
	{
		ajax.url = "inhalt/home.php";
	}
	if(choice == "kontakt")
	{
		ajax.url = "inhalt/kontakt.php";
	}
	if(choice == "impressum")
	{
		ajax.url = "inhalt/impressum.php";
	}
	if(choice == 'haftung')
	{
		ajax.url = "inhalt/haftungsausschluss.php";
	}
	
	ajax.params = "none=none";
	ajax.beiFehler = fehler;
	ajax.beiErfolg = erfolg;
	ajax.bearbeiteAnfrage();
}
