// JavaScript Document

function confirmDelGlob () {
Check = confirm("Moechten Sie dieses Element wirklich loeschen?");
if (Check == false)return false;
}

function confirmDel () {
Check = confirm("Navigationspunkt wirklich Entfernen?");
if (Check == false)return false;
}

function yd_openWindow(url,b,h)
{
var url,h,b;
eigenschaften="left=50,top=50,width="+b+",height="+h+",menubar=no,toolbar=no,location=no,status=no,scrollbars=yes";

window.open(url,"window",eigenschaften);
	
}

function nSl(id)
{
	if(document.getElementById(id).style.display == 'none')
	{
		document.getElementById(id).style.display = "block";
	} else {
		document.getElementById(id).style.display = "none";
	}
}
