var _isAddressInfoReady = false; var _address = new Address(); _address.street1 = "PO Box 366"; _address.street2 = ""; _address.city = "Warsaw"; _address.state = "VA"; _address.zip = "22572"; _address.phone = "(804) 333-3722"; _address.fax = "(804) 313-2208"; _isAddressInfoReady = true; function Address() { this.street1 = ""; this.street2 = ""; this.city = ""; this.state = ""; this.postalCode = ""; this.phone = ""; this.fax = ""; } function isAddressInfoReady() { return _isAddressInfoReady; }