<!--
function winopen(url)
{
window.open(url,'_okno','toolbar=no,menubar=no,location=no,directories=no,scrollbars=yes,resizable=yes,status=no,width=540,height=600,top=10,left=10'); 
}

function winopen2(url)
{
window.open(url,'_mapa','toolbar=yes,menubar=yes,location=yes,directories=yes,scrollbars=yes,resizable=yes,status=yes,width=750,height=580,top=10,left=10'); 
}

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;
}
//-->
