function termine(url, text1, text2)
{
	Check = confirm("Folgenden Termin " + text1 + " ?\n\n" + text2);
	if (Check == true)
		window.location.href = url;
}


function termin_edit(url,text)
{
	dialog = window.open("../html/modules/termine/termine_edit.php?url=" + url,"Termin aendern","width=500,height=400");
	dialog.moveTo(((screen.width / 2) - 250),((screen.height / 2) - 200));
	dialog.focus();
}
