/*
 * $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 ("304", "K325", "A",
        new Array(
            new country("26", "United States",
                new Array(
                    new carrier("92", "Virgin Mobile", "www.virginmobileusa.com", "1-888-322-1122", 0)
                )
            )
        ) <!-- end country array -->
    )<!-- end model -->
);

