        function turnImgCheck(objCheck)
        {
            var img=document.getElementById("img_check_" + objCheck.id).src;
            var tableau=img.split("/");

            if(tableau[tableau.length-1] == 'check2.gif'){
                tableau[tableau.length-1] = 'check1.gif';
            }else{
                tableau[tableau.length-1] = 'check2.gif';
            }

            tableau_final = tableau.join("/");
            document.getElementById("img_check_" + objCheck.id).src = tableau_final;
        }



        function turnImgCheck2(objCheck)
        {
            var img=document.getElementById("img_check_" + objCheck.id).src;
            var tableau=img.split("/");

            if(tableau[tableau.length-1] == 'check4.gif'){
                tableau[tableau.length-1] = 'check3.gif';
            }else{
                tableau[tableau.length-1] = 'check4.gif';
            }

            tableau_final = tableau.join("/");
            document.getElementById("img_check_" + objCheck.id).src = tableau_final;
        }

    function turnImgRadio(objRadio)
        {
            var t_img = document.getElementById('conteneurRadio').getElementsByTagName('img');

            for (var i = 0; i < t_img.length; i++)
            {
                t_img[i].src = 'images/utils/radio1.gif';
            }

            var img = document.getElementById('img_radio_' + objRadio.id);
            img.src = 'images/utils/radio2.gif';
        }

    function sendFormResa(form)
        {
            form.elements['productUrl'].value=window.location.href;
            form.elements['homeUrl'].value="http://"+window.location.hostname+"/";
            form.submit();
        }