function showDescription(Objet)
{
    
    hideAll();
    
    switch(Objet)
    {
        case "Paypal":
            $('#Paypal').show();
            break;
        case "Chq":
            $('#Chq').show();
            break;
        case "Direct":
            $('#Direct').show();
            break;
        default:alert('Erreur');
    }
   
}
function hideAll()
{
    $('#Paypal').hide();
    $('#Chq').hide();
    $('#Direct').hide();
}
