// JavaScript Document

sfHover = function() 
{
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", sfHover);
 
function accept ()
{
Check = confirm('Soll das Bild wirklich gelöscht werden?');
if(Check == false) return false;
}

function displaynavi(id, display) 
{
 	obj = document.getElementById(id);
	if (display=='show')
	{
		obj.style.left = 'auto'; 
	}
	else if (display=='hide')
	{ 
		obj.style.left = '-999em'; 
	}
}

function open_site(url)
{
    window.open(url, "Aktuelles", "width=440,height=350");
}
function deletedate(id)
{
Check = confirm('Soll der Termin wirklich gelöscht werden?');
if(Check == true) 
	{
	window.location.href = "Mitgliederbereich.php?action=deletedate&id="+id+"";
	}
}
