﻿var lastAddress = 1;
var locations = new Array();

function locationObj()
{
    this.name = "";
    this.address1 = "";
    this.city = "";
    this.state = "";
    this.zip = "";
    this.phone = "";
    this.fax = "";
}

var l1 = new locationObj();
l1.name = "East TN Regional Eye Center";
l1.address1 = "1124 E Weisgarber Road, Suite 204";
l1.city = "Knoxville";
l1.state = "TN";
l1.zip = "37909";
l1.phone = "865.522.2449";
l1.fax = "865.522.6453";
locations[0] = l1;

var l2 = new locationObj();
l2.name = "Morristown Office";
l2.address1 = "1447 West Morris Blvd., Suite C";
l2.city = "Morristown";
l2.state = "TN";
l2.zip = "37815";
l2.phone = "423.581.1271";
l2.fax = "423.581.1510";
locations[1] = l2;