<!--
function changeContent(div, id) {
    var content = div +'_DIV';
    var desc = div +'_'+ id +'_DIV';
    document.getElementById(content).innerHTML = document.getElementById(desc).innerHTML;
}

function show_url(url) {
	if (url != "") {
        if (navigator.appName == "Microsoft Internet Explorer") { 
                this.location.href = url;
        } else { 
            window.open(url);
        }
	}
}
function setFocus(field) {
	// die FORM heisst 'login', der INPUT 'passwd' 
	//document.ntk.username.focus();
	focus = eval('document.ntk.'+ field);
	focus.focus();
}
function popupWindow(url) {
	sat = window.open(url, 'ntkSatelite', 'top=25,left=25,width=700,height=500,menubar=yes,toolbar=no,status=yes,scrollbars=yes' );
    sat.focus();
    //return false;
}
function confirmDelete(url, item) {
        var pos = confirm("Soll der Eintrag ("+ item +") gelöscht werden?");
        if (pos) {
                this.location.href = url;
        }

}
//-->
