var _isAddressInfoReady = false; var _address = new Address(); _address.street1 = "PO Box 1278"; _address.street2 = ""; _address.city = "Wise"; _address.state = "VA"; _address.zip = "24293"; _address.phone = "(276) 328-3556"; _address.fax = "(276) 328-6937"; _isAddressInfoReady = true; function Address() { this.street1 = ""; this.street2 = ""; this.city = ""; this.state = ""; this.postalCode = ""; this.phone = ""; this.fax = ""; } function isAddressInfoReady() { return _isAddressInfoReady; }