function openAnnonce(txt)
{
    var height = 600;
    var width  = 500;
    var left   = window.screen.width-width-50;
    var top    = window.screen.height/2-height/2-35;
    var configuration = "alwaysraised=yes, toolbar=no, menubar=no, location=no, directories=no, status=no, resizable=no, scrollbars=no, titlebar=no, width=" + width + ", height=" + height + ", left=" + left + ", top=" + top;
            
    window.open(txt, 'Amarine_Offre_Emploi', configuration);
}

function openDescPoste(txt)
{
    var height = 450;
    var width  = 500;
    var left   = 0 + 50;
    var top    = window.screen.height/2-height/2-35;
    var configuration = "alwaysraised=yes, toolbar=no, menubar=no, location=no, directories=no, status=no, resizable=no, scrollbars=no, titlebar=no, width=" + width + ", height=" + height + ", left=" + left + ", top=" + top;
            
    window.open(txt, 'Amarine_Poste', configuration);
}


