document.write("<div id=\"terminVorschau\"><iframe name=\"terminVorschau\" frameborder=\"0\"></iframe></div>");

function showTerminVorschau(objekt, datum) {
	parent.terminVorschau.location.href = "termineFrame.php5?datum="+datum;
	var obj = document.getElementById("terminVorschau");
	var pos = getPosition(objekt);
	obj.style.top = pos.y - 80;
	obj.style.left = pos.x + (objekt.offsetWidth/2);
	obj.style.visibility = "visible";
}

function closeTV() {
	var obj = document.getElementById("terminVorschau");
	obj.style.visibility = "hidden";
}
