function layout() {

	if (!document.getElementById('links')){
		document.getElementById('inhalt').style.marginLeft = "140px";
	}
	
}


	
///////////////////////////////////////////////////////////////////////////////////////////////////////////


function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////


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;
}

///////////////////////////////////////////////////////


function highlight(id, an){
	var neu = "pix/" + id + ".gif";
	if (an == 1){
		neu = "pix/" + id + "_hover.gif";
	}
	document.getElementById(id).src = neu;
}
