/* ### Fonctions Javascript - CG Haute-Savoie, Guide des aides départementales ###*/
/* ### Esprit Public - 2006 ### */
/* ### Franck GRENIER ### */



/* ===================================================== */
/* =============== Fonctions d'affichage =============== */
/* ===================================================== */

function change_back_panier(element){
    element.style.backgroundColor = "#FFD597";
}

function restore_back_panier(element){
    element.style.backgroundColor = "#C3C0B8";
}

function change_back_row(element){
    element.cells[0].style.backgroundColor = "#FFD597";
    element.cells[1].style.backgroundColor = "#FFDDAB";
    element.cells[2].style.backgroundColor = "#FFD597";
    //element.cells[3].style.backgroundColor = "#FFDDAB";
}

function restore_back_row1(element){
    element.cells[0].style.backgroundColor = "#DFDCD5";
    element.cells[1].style.backgroundColor = "#E5E3DD";
    element.cells[2].style.backgroundColor = "#DFDCD5";
    //element.cells[3].style.backgroundColor = "#E5E3DD";
}

function restore_back_row2(element){
    element.cells[0].style.backgroundColor = "#ECE9E1";
    element.cells[1].style.backgroundColor = "#F0EDE7";
    element.cells[2].style.backgroundColor = "#ECE9E1";
    //element.cells[3].style.backgroundColor = "#F0EDE7";
}


function select_all(element){
    var i=0;
    for(var i; i<document.forms[0].length; i++){
        if(document.forms[0].elements[i].type == "checkbox"){
            document.forms[0].elements[i].checked = true;
        }
    };
    document.getElementById("col1").onclick = unselect_all;
}

function unselect_all(){
    var j=0;
    for(var j; j<document.forms[0].length; j++){
        if(document.forms[0].elements[j].type == "checkbox"){
            document.forms[0].elements[j].checked = false;
        }
    };
    document.getElementById("col1").onclick = select_all;
}



/* ======================================================= */
/* =============== Fonctions de navigation =============== */
/* ======================================================= */

function gotoDetail(cible) {
    window.location.href = 'fiche.php?id='+cible;
}