function MainMenuOver1(aobject, linkcolor, bgcolor, left, description)
{
	aobject.style.backgroundColor = bgcolor;
	aobject.style.color			  = linkcolor;

	if (document.all)
	{
		aobject.style.cursor = "hand";
	}
	else
	{
		aobject.style.cursor = "pointer";
	}
}

function MainMenuOut1 (aobject, linkcolor, bgcolor)
{
	aobject.style.backgroundColor = bgcolor;
	aobject.style.color			  = linkcolor;
}

function SpecialOver (aobject)
{
	aobject.bgColor = "#F1F1F1";
}


function SpecialOut (aobject)
{
	aobject.bgColor = "#FFFFFF";
}

function setPointer(theRow, thePointerColor)
{
    if (thePointerColor == '' || typeof(theRow.style) == 'undefined') {
        return false;
    }
    if (typeof(document.getElementsByTagName) != 'undefined') {
        var theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        var theCells = theRow.cells;
    }
    else {
        return false;
    }

    var rowCellsCnt  = theCells.length;
    for (var c = 0; c < rowCellsCnt; c++) {
        theCells[c].style.backgroundColor = thePointerColor;
    }

    return true;
} // end of the 'setPointer()' function

function setsmile(Zeichen) {
document.input.inhalt.value =
document.input.inhalt.value + Zeichen;
}

function kill()
	{
	document.forms.bbform.bild.value = ""
	}
