//  Tabellenzeile farbig unterlegen
function cOn(tr){
tr.style.backgroundColor="#FFFF99";
tr.style.cursor="pointer";
}

//  Tabellenzeile zurücksetzen
function cOut(tr){
tr.style.backgroundColor="#FFFFFF";
}

// Ganze Tabellenzeile als Link benutzen
function cGo(Seitenname){
window.location.href = Seitenname + '.htm';
}

//  Cursor Hand an
function hOn(td){
td.style.cursor="pointer";
}

