﻿var locations = new Array();

function locationObj()
{
    this.name = "";
    this.time = "";
    this.address1 = "";
    this.address2 = "";
    this.city = "";
    this.state = "";
    this.zip = "";
    this.phone = "";
    this.fax = "";
    this.contactname = "";
    this.contactemail = "";
    this.infoageurl = "";
    this.latitude = "";
    this.longitude = "";
}

var l1 = new locationObj();
l1.name = "AquaTech";
l1.time = "";
l1.address1 = "820 Broad Street";
l1.city = "Chattanooga";
l1.state = "TN";
l1.zip = "37404";
l1.phone = "423.266.4476";
l1.fax = "423.266.4486";
l1.contactname = "Brad Carney";
l1.contactemail = "info@aquatechpool.net";
l1.infoageurl = "";
l1.latitude = "35.0460560";
l1.longitude = "-85.3101080";
locations[0] = l1;