<!--


window.defaultStatus = "Paracelsusheim, Moosburg - Wohnen und Pflege im Alter";

document.onmousedown 	= click;
document.onmouseup	= click;

function click(key) {
	if ((navigator.appName == "Netscape" && key.which == 3) ||
		(navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2))
		{
		alert("P a r a c e l s u s h e i m ,  M o o s b u r g\n\nWohnen und Pflege im Alter");
		return false;
	}
}

// -->
