var _isAddressInfoReady = false; var _address = new Address(); _address.street1 = "PO Box 68"; _address.street2 = ""; _address.city = "Montross"; _address.state = "VA"; _address.zip = "22520"; _address.phone = "(804) 493-9052"; _address.fax = "(804) 493-8669"; _isAddressInfoReady = true; function Address() { this.street1 = ""; this.street2 = ""; this.city = ""; this.state = ""; this.postalCode = ""; this.phone = ""; this.fax = ""; } function isAddressInfoReady() { return _isAddressInfoReady; }