<!--
var ie;
var ns;
var ns6;
var n_check;
var first = true;


browsercheck();

function browsercheck()
{
	ie = (document.all)? 1:0;
	ns = (document.layers)? 1:0;
	ns6 = (document.getElementById && !document.all)?1:0;
}

//Änderung des tr's für die Subnavigation

function sub_on(lnk,punkt)
{
	browsercheck();
	//
	if (ns){}
	else {
		hl(lnk,"bg-dg");
	}
	
}

function sub_off(lnk)
{
	browsercheck();
	//
	if (ns){}
	else {
		hl(lnk,"subnavi");
	}
}

function hl(tr,cls1,cls2)
{	
	if(ie){
		while (tr.tagName!="TR")
		{tr=tr.parentElement;}
		tr.className = cls1;
		tr.style.setAttribute("cursor","hand"); 
	}else{
		while (tr.tagName!="TR")
		{tr=tr.parentNode;}
		tr.className = cls1;
	}
}

function cb_on(cb1,cb2)
{
	if(cb1.checked){
		document.feedback.elements[cb2].checked = false;
	}
}

function fenster1()
 {
window.open("http://www.gsub-intern.de/entimon_Ergebnisber_2003/entimon_Ergebnisber_2003_Frameset.asp","Fenster1","statusbar=yes,resizable=no,toolbar=no,hotkeys=no,scrollbars=no,width=820,height=550");
}


//-->
