//This script creates the NAV Cookie with "from" url and the offer name that must be included :
// <span id="nameOffer" class="blue" style="font-size:12px;"><xsl:value-of select="$name_offer"/>
//
   window.addEvent('domready', function(){
            Cookie.write('url', document.location, {domain: '.ovh.com', path: '/'});
            Cookie.write('nameOffer', $('nameOffer').get('value') + ' ' + $('typeOffer').get('value'), {domain: '.ovh.com', path: '/'});
    });



