/*
 * $RCSfile: data_where-to-buy.jsp,v $
 * Author: Mike Vargo (original)
 * Last Changed by: $Author: nextleft $
 * Version: $Revision: 1.6 $
 *
 */











function model(id, name, status, countries)
{
   this.id = id;
   this.name = name;
   this.status = status;
   this.countries = countries;
}

function country(id, name, carriers)
{
   this.id = id;
   this.name = name;
   this.carriers = carriers;
}

function carrier(id, name, url, phone, buyonlineonly)
{
   this.id = id;
   this.name = name;
   this.url = url;
   this.phone = phone;
   this.buyonlineonly = buyonlineonly;
}

tData_models = new Array(
    new model ("317", "E2500", "A",
        new Array(
            new country("18", "Venezuela",
                new Array(
                    new carrier("188", "Digitel", "www.digitel.com.ve", "58- 212- 2805902 (o 121 desde un Celular)", 0),
                    new carrier("159", "movistar Venezuela", "www.movistar.com.ve", "582-12-200-8047", 0)
                )
            )
        ) <!-- end country array -->
    )<!-- end model -->
);

