// JavaScript Document

var fenster;
function openwindow(link) {
	
	fenster=window.open(link,'fenster','scrollbars=yes,resizable=yes,status=no,width=700,height=450,dependent=yes, directories=No, location=No, menubar=No, titlebar=No, toolbar=No');
	
	fenster.focus();
}

function foc_in(object)
	{
	object.style.background='#EEEEEE';
	}
	
function foc_out (object)
	{
	object.style.background='#FFFFFF';
	}
	
var select, res;
function check(name) {
    select = 'document.aendern.'+name;
    eval('res = ('+select+'.options['+select+'.selectedIndex].text != \'neue Kategorie\')');
    eval(select+'_neu.disabled = '+res);
    if (!res) eval(select+'_neu.focus()');
}