var _isAddressInfoReady = false; var _address = new Address(); _address.street1 = "PO Box 300"; _address.street2 = ""; _address.city = "Low Moor"; _address.state = "VA"; _address.zip = "24457"; _address.phone = "(540) 863-6640"; _address.fax = "(540) 863-6644"; _isAddressInfoReady = true; function Address() { this.street1 = ""; this.street2 = ""; this.city = ""; this.state = ""; this.postalCode = ""; this.phone = ""; this.fax = ""; } function isAddressInfoReady() { return _isAddressInfoReady; }