var _isAddressInfoReady = false; var _address = new Address(); _isAddressInfoReady = true; function Address() { this.street1 = ""; this.street2 = ""; this.city = ""; this.state = ""; this.postalCode = ""; this.phone = ""; this.fax = ""; } function isAddressInfoReady() { return _isAddressInfoReady; }