﻿function reponseSondage(strUICulture)
{
    var url = '';
    var idsReponse = '';
    var strAutre = '';

    $('input[@name=sondage]').each(function() {
        if ($(this).is(":checked")) 
        {
            if (idsReponse == '')
                idsReponse = $(this).val();
            else
                idsReponse = idsReponse + ',' + $(this).val();
        }
    });

    
    if (strUICulture == "fr")
    {
        url = 'reponse-sondage-fr.aspx';
        $('#BlocSondage').html("<div style=\"text-align: center; padding: 0 0 10px 0; width: 200px;\"><img src=\"images/ajax-wait.gif\" width=\"36\" height=\"36\" alt=\"Réponse en traitement...\" title=\"Réponse en traitement...\" /></div><p style=\"font-weight: bold\">Veuillez patientez pendant que votre réponse est traitée.</p><p style=\"font-weight: bold\">Merci d'avoir répondu à notre sondage!</p>");
    }
    else
    {
        url = 'reponse-sondage-en.aspx';
        $('#BlocSondage').html("<div style=\"text-align: center; padding: 0 0 10px 0; width: 200px;\"><img src=\"images/ajax-wait.gif\" width=\"36\" height=\"36\" alt=\"Response treatment...\" title=\"Response treatment...\" /></div><p style=\"font-weight: bold\">Please wait while your response is treated.</p><p style=\"font-weight: bold\">Thank you for having responded to our survey!</p>");
    }

    $('#BlocSondage').load(url + '?i=' + idsReponse);
}
