//var prevcolor = 0;function changecolor(target,color) {	prevcolor = document.getElementById(target).style.backgroundColor;	document.getElementById(target).style.backgroundColor = color;	xtarget = target;}//function resetcolor() {	if ((typeof prevcolor)=="string")	{		document.getElementById(xtarget).style.backgroundColor = prevcolor;		prevcolor = 0;	}}//function loadurl(x){	self.location.href = x;	return false;}//function loadconfirmedurl(x){	if(!confirm("Sind Sie sicher? Das löschen kann nicht widerrufen werden."))		return false;	self.location.href = x;}//var imgid;function changegif(imgname,stat,rowid) {	if ((typeof rowid)=="string")		imgid = imgname+"-"+rowid;	else		imgid = imgname;	document.getElementById(imgid).src = "../bilder/"+imgname+"-"+stat+".gif";}//function changebgnav(ntab,stat) {	document.getElementById(ntab).style.backgroundImage = "url(../bilder/bg_nav_"+stat+".gif)";	if (stat==1)	{		//document.getElementById(ntab).style.paddingRight = "20px";		document.getElementById(ntab).style.backgroundColor = "#ffffff";	}	else	{		//document.getElementById(ntab).style.paddingRight = "20px";		document.getElementById(ntab).style.backgroundColor = "#E1E7EE";	}}//var popupwindow;function openpopup() {	var w = 400;	var h = 300;	var winl = (screen.width - w) / 2;	var wint = (screen.height - h) / 2;	popupwindow = window.open("","name","toolbar=no,resizable=no,directories=no,status=no,menubar=no,location=no,scrollbars=no,width="+w+",height="+h+",top="+wint+",left="+winl);}//function submitOnEnter(e, formname){	 var key;	 if(window.event)		  key = window.event.keyCode;     //IE	 else		  key = e.which;     //firefox	 if(key == 13)		  eval('document.' + formname + '.submit();');}