<!--

function select(zeile,bgcolor,content) {
//  document.all[zeile].style.background=bgcolor;
//  document.layers[zeile].bgColor=bgcolor;
  document.getElementById(zeile).style.background=bgcolor;
}
function unselect(zeile,bgcolor,content) {
//  document.all[zeile].style.background=bgcolor;
//  document.layers[zeile].bgColor=bgcolor;
  document.getElementById(zeile).style.background=bgcolor;
}

function changebgcolor(obj,color){
	if (document.all || document.getElementById)
		obj.style.backgroundColor=color;
	else if (document.layers)
  	obj.bgColor=color;
}

function newWindow(url,name,x,y) {
  fenstertwo=window.open(url, name, "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="+x+",height="+y+",screenX=5,screenY=5")
}

// -->
