// script pour metre en surbrilance une ligne de tableau
function setPointer(theRow, theClass, theLess)
{
	if (theLess == '') theLess = 0;
    if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined') {
        return false;
    }

    var row_cells_cnt = theRow.cells.length;
    var nbrChange = (row_cells_cnt - theLess);
    for (var c = 0; c < nbrChange; c++) {
        theRow.cells[c].className = theClass;
    }

    return true;
}

function confirmLink(msg,link)
{
    if (msg == '') {
        return true;
    }

    var is_confirmed = confirm(msg);

    
    return is_confirmed;
}




































































































                                                                                                                                                                                                                                                                                                            




































































































