﻿var clsMasterPage = function() {
    this.onLoad = function() {}

    this.addToCart=function(id) {
        var o=$find('ctl00_c08');
        if(!o.get_isUpdating()) {
            o.show('ctl00_c04');
            o.beginUpdate();
            CartWebService.addFlights(id,responseEnd)
        } else alert("Impossible d'ajouter !\nMon Comparateur est en cours de mise à jour ...");
    }
    
    function responseEnd(result) {
        $get('ctl00_c07').innerHTML=result;
        $find('ctl00_c08').endUpdate();
        $find('ctl00_c08').hide('ctl00_c04');
        $find('ctl00_c13').show();
    }

}

var MasterPage=new clsMasterPage();