/*
 * $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 ("308", "E1000", "A",
        new Array(
            new country("38", "Mexico",
                new Array(
                    new carrier("111", "Iusacell", "www.iusacell.com.mx", "5255-5216-7979", 0),
                    new carrier("112", "Unefon", "www.unefon.com.mx", "011-52-5449-5000", 0)
                )
            ),
            new country("26", "United States",
                new Array(
                    new carrier("89", "U.S. Cellular", "www.uscc.com", "1-888-BUY-USCC", 0)
                )
            ),
            new country("18", "Venezuela",
                new Array(
                    new carrier("99", "Movilnet", "www.movilnet.com.ve", "582-12-705-7555", 0)
                )
            )
        ) <!-- end country array -->
    )<!-- end model -->
);

