var _openElement = new Array();   // Stock les éléments ouvert

function findMatchingStudents()
{
    new Ajax.Request('getMatchingEtudiantsProfils.php',
    {
        onSuccess : fillEtudiantsList
    } );
}


function findMatchingApprentices()
{
    new Ajax.Request('getMatchingApprentisProfils.php',
    {
        onSuccess : fillApprentisList
    } );
}

function updateAnnonce()
{
    window.location = 'modifAnnonce.php';
}

function changePassword()
{
    // Hidding menu
    $('admin-nav').hide();
    
    // Showing form to change password    
    $('admin-changePassword').show();
    
    // Updating title
    $('pageTitleTxt').innerHTML = $('title-changePass').innerHTML;
}

// Disconnect the user
function logout()
{
    window.location = 'logout.php';
}

function displayInfo(elementId)
{
    if(_openElement.indexOf(elementId) == -1) // Element close we open it
        {
        _openElement.push(elementId);
        Effect.Appear('table_long_'+elementId);
        $('zoom_'+elementId).innerHTML = '<img src="../../lib/pictures/zoom_out.png" border="0" alt="Fermer le profil" title="Fermer le profil" onclick="Javascript:displayInfo(\''+elementId+'\');"/>';
        $('table_short_'+elementId).title = 'Fermer le profil';
        $('table_long_'+elementId).title = 'Fermer le profil';
    }
    else  // Element open we close it
        {
        _openElement = _openElement.without(elementId);
        Effect.Fade('table_long_'+elementId);
        $('zoom_'+elementId).innerHTML = '<img src="../../lib/pictures/zoom_in.png" border="0" alt="Ouvrir le profil" title="Ouvrir le profil" onclick="Javascript:displayInfo(\''+elementId+'\');"/>';
        $('table_short_'+elementId).title = 'Ouvrir le profil';
        $('table_long_'+elementId).title = 'Ouvrir le profil';
    }
}