
//this script is to include in any index page that use the cookie for navigation.
// It deletes the cookie


        window.addEvent('domready', function(){
            if (Cookie.read('url') && Cookie.read('nameOffer'))
            {
                Cookie.dispose('url', {domain: '.ovh.com', path: '/'});
                Cookie.dispose('nameOffer', {domain: '.ovh.com', path: '/'});
            }
        });


