//////////////////////////////////////////////////////////////////////////////
function fenster(theURL,winName,features) { 
	Neufenster = window.open(theURL,winName,features);
  Neufenster.focus();
}
//////////////////////////////////////////////////////////////////////////////
function sichtbar(a){
  if (document.getElementById(a).style.display == "none"){
    document.getElementById(a).style.display = "block";
  }else{
    document.getElementById(a).style.display = "none";
  }  
}
//////////////////////////////////////////////////////////////////////////////
function Tabellenfarbe(Reihe, Farbe){
	if (Farbe == '' || typeof(Reihe.style) == 'undefined'){
		return false;
	}
    		        
  if (typeof(document.getElementsByTagName) != 'undefined'){
		var theCells = Reihe.getElementsByTagName('td');
  }else if (typeof(Reihe.cells) != 'undefined'){
	  var theCells = Reihe.cells;
	}else{
		return false;
	}
  var rowCellsCnt  = theCells.length;
	for (var c = 0; c < rowCellsCnt; c++){
		theCells[c].style.backgroundColor = Farbe;
	}
  return true;
}
//////////////////////////////////////////////////////////////////////////////