
/**
 * Sets/unsets the pointer in browse mode
 *
 * @param   object   the table row
 * @param   object   the color to use for this row
 * @param   object   the fontcolor to use for text in this row
 * @param   object   the fontWeight (normal/bold) to use for text in this row
 *
 * @return  boolean  whether pointer is set or not
 */
function setPointer(theRow, thePointerColor, theFontColor, theFontWeight)
{
    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;
    }

    if (typeof(document.getElementsByTagName) != 'undefined') {
        var theFont = theRow.getElementsByTagName('font');
    }
    else {
        return false;
    }
    var FontCnt  = theFont.length;
    for (var c = 0; c < FontCnt; c++) {
        //alert(theFont[c] + c +" "+FontCnt);
        theFont[c].color = theFontColor;
        //theFont[c].style.fontColor = theFontColor;
        theFont[c].style.fontWeight = theFontWeight;
    }

    return true;
} // end of the 'setPointer()' function

// Anzeigen der linken Texte beim onOver-Effekt
function over_Link(theLink)
{

if (theLink==1){ln1();}
if (theLink==2){ln2();}
if (theLink==3){ln3();}
if (theLink==4){ln4();}
if (theLink==5){ln5();}
if (theLink==6){ln6();}
if (theLink==7){ln7();}
if (theLink==8){ln8();}
if (theLink==9){ln9();}
if (theLink==10){ln10();}
if (theLink==11){ln11();}
if (theLink==12){ln12();}
if (theLink==13){ln13();}
}

// Anzeigen der linken Texte beim onOut-Effekt
function out_Link(theLink)
{
if (theLink==0){ln0();}
if (theLink==1){ln1();}
if (theLink==2){ln2();}
if (theLink==3){ln3();}
if (theLink==4){ln4();}
if (theLink==5){ln5();}
if (theLink==6){ln6();}
if (theLink==7){ln7();}
if (theLink==8){ln8();}
if (theLink==9){ln9();}
if (theLink==10){ln10();}
if (theLink==11){ln11();}
if (theLink==12){ln12();}
if (theLink==13){ln13();}
}


