function display_visites(display_visites_type_1,display_visites_type_2,display_visites_type_3){
    document.getElementById('visites_type_1').style.display=display_visites_type_1;
    document.getElementById('visites_type_2').style.display=display_visites_type_2;
    document.getElementById('visites_type_3').style.display=display_visites_type_3;
}
function visites_hover (style_visites_type_1,style_visites_type_2,style_visites_type_3)
{
    if (style_visites_type_1 =="1")
    {
    document.getElementById('menu_visites_type_1').style.backgroundColor = '#DAA520';
    document.getElementById('menu_visites_type_1').style.color = 'white';
    }
    else
    {
    document.getElementById('menu_visites_type_1').style.backgroundColor = '';
    document.getElementById('menu_visites_type_1').style.color = '';
    }
    if (style_visites_type_2 =="1")
    {
    document.getElementById('menu_visites_type_2').style.backgroundColor = '#DAA520';
    document.getElementById('menu_visites_type_2').style.color = 'white';
    }
    else
    {
    document.getElementById('menu_visites_type_2').style.backgroundColor = '';
    document.getElementById('menu_visites_type_2').style.color = '';
    }
    if (style_visites_type_3 =="1")
    {
    document.getElementById('menu_visites_type_3').style.backgroundColor = '#DAA520';
    document.getElementById('menu_visites_type_3').style.color = 'white';
    }
    else
    {
    document.getElementById('menu_visites_type_3').style.backgroundColor = '';
    document.getElementById('menu_visites_type_3').style.color = '';
    }
}