// // JS Language file for DCM Home // $Id$ // var Language = new Class({ Implements: [Events,Options], // // String syntax is styleId: "Helper Text" strings: { emailHelper: "Enter your valid login email address", passwordHelper: "Enter Password when you created account", emailHelperUser: "Enter valid login email address for communication/Login", passwordHelperUser: "Enter Password that contains alphanumerics of 6-12 characters long", retypepasswordHelper: "Retype the Password", companyNameHelper: "Enter your Company's Name", firstNameHelper: "Enter your First Name", lastNameHelper: "Enter your Last Name", middleNameHelper: "Enter your Middle Name", phoneHelper: "Enter your Phone Number and Extn", faxHelper: "Enter your Fax Number", addressHelper: "Enter your Primary Address", cityHelper: "Enter your Primary City", stateHelper: "Choose your Primary residential State", zipCodeHelper: "Enter your Zipcode", securityHelper: "Enter the string of characters that you see above, refresh if the text is not clear" }, // // Don't have to edit anything below here if you // are just adding in language strings initialize:function() {}, // // Bread and butter getString: function( elementId ) { return( eval( "this.strings."+elementId ) ); } });