var _isAddressInfoReady = false; var _address = new Address(); _address.street1 = "PO Box 99"; _address.street2 = ""; _address.city = "New Kent"; _address.state = "VA"; _address.zip = "23124"; _address.phone = "(804) 966-9610"; _address.fax = "(804) 966-5562"; _isAddressInfoReady = true; function Address() { this.street1 = ""; this.street2 = ""; this.city = ""; this.state = ""; this.postalCode = ""; this.phone = ""; this.fax = ""; } function isAddressInfoReady() { return _isAddressInfoReady; }