
var regexes = 
{
   /*
    * a. Common Regular Expressions for Registration
    */		
					/*	(?=.*\w) : at least one word character \w is equivalent to [a-zA-Z_0-9]. */
/*  'link_alias' :      /^(?=.*[a-zA-Z0-9])[A-Za-z0-9_\-]{10,30}$/,   // 10 to 30, alphanumerics, dash, and underscore (at least one word character)
  'profile_page_name': /^[A-Za-z0-9 \.\-\']{0,45}$/,  // 0 to 45, alphanumerics, Space, Dash, Period, Apostrophe (at least one word character)
*/
  'link_alias' :      /^(?=.*[a-zA-Z0-9])[A-Za-z0-9_\-]{3,30}$/,
  'alias' :      /^(?=.*[a-zA-Z0-9])[A-Za-z0-9_\-]{3,30}$/,
  'profile_page_name': /^[A-Za-z0-9 _\-\.\']{3,45}$/,  		
  'user_id':          /[\w-]+@([\w-]+\.)+[\w-]+/,					// approximates a valid email. -> limit input text size to 60
  
  'password1':        /^(?=.*[a-zA-Z0-9])[A-Za-z0-9_\-]{8,30}$/,   // 8 to 30, alphanumerics, dash, and underscore (at least one word character)
  'oldPassword':        /^(?=.*[a-zA-Z0-9])[A-Za-z0-9_\-]{8,30}$/,   // 8 to 30, alphanumerics, dash, and underscore (at least one word character)
  'newPassword1':        /^(?=.*[a-zA-Z0-9])[A-Za-z0-9_\-]{8,30}$/,   // 8 to 30, alphanumerics, dash, and underscore (at least one word character)
  
  'firstName':        /^(?=.*[a-zA-Z0-9])[A-Za-z \.\-\']{1,30}$/,     // 1 to 30, (Letters, Space, Dash, Period, Apostrophe) (at least one word character)
  'initial' :         /^[A-Z]?$/,        							  // 0 or 1 Capital Letter
  'lastName':         /^(?=.*[a-zA-Z0-9])[A-Za-z \.\-\']{1,30}$/,     // 1 to 30,(Letters, Space, Dash, Period, Apostrophe)(at least one word character)
  
  'companyName' :     /^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \.\-\']{0,45}$/,  // 0 to 45, alphanumerics, Space, Dash, Period, Apostrophe (at least one word character)
  'companySecondName':/^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \.\-\']{0,45}$/,  // 0 to 45, alphanumerics, Space, Dash, Period, Apostrophe (at least one word character)
  
  'unitNumber':       /^(?=.*[a-zA-Z0-9])[A-Za-z0-9\.\-]{0,10}$/,	   // 0 to 10, alphanumerics,  Dash, Period
  'address1':         /^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \.\-\']{1,45}$/,    // 1 to 45, alphanumerics, Space, Dash, Period, Apostrophe
  'address2':         /^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \.\-\']{0,45}$/,    // 0 [optional] to 45, alphanumerics, space, Dash, Period, Apostrophe
  'city':             /^(?=.*[a-zA-Z0-9])[A-Za-z \.\-\']{1,45}$/,    // 1 to 45 alphanumerics, Space, Dash, Period, Apostrophe
  'manualProvinceEntry':/^(?=.*[a-zA-Z0-9])[A-Za-z \.\-\']{1,30}$/,  // 1 to 30, letters, Space, Dash, Period, Apostrophe
  'postalCode4Canada':  /^[abceghjklmnprstvxyABCEGHJKLMNPRSTVXY][0-9][abceghjklmnprstvwxyzABCEGHJKLMNPRSTVWXYZ] {0,1}[0-9][abceghjklmnprstvwxyzABCEGHJKLMNPRSTVWXYZ][0-9]$/,
  														// Canadian Zip Code 
  														// Matches 		: G3M 5T9 | C3M5T9
  														// Non-Matches	: Z3M 5T9 | W3M 5T9 | 5T9 C3M 
  
  'postalCode4US':		/^[0-9]{5}([- \/]?[0-9]{4})?$/,	// US Zip Code + 4 digit extension Postal Code
  														// Matches 		: 14467 | 144679554 | 14467-9554
  														//Non-Matches	: 14467 955 | 14467- | 1446-9554
  
  'postalCodeOthers': /^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \.\-]{1,12}$/,		// 1 to 12, alphanumerics,  Dash, Space, Period
                          

  'homePhone':        /^[0-9]{0,12}$/,					// 0 to 12, Numbers Only
  'homeExtension':    /^[0-9]{0,6}$/,					// 0 to 6, Numbers Only
  'workPhone':        /^[0-9]{0,12}$/,					// 0 to 12, Numbers Only
  'workExtension':    /^[0-9]{0,6}$/,					// 0 to 6, Numbers Only
  'faxPhone':    	  /^[0-9]{0,12}$/,					// 0 to 12, Numbers Only
  'faxExtension':     /^[0-9]{0,6}$/,					// 0 to 6, Numbers Only
  'otherPhone':    	  /^[0-9]{0,12}$/,					// 0 to 12, Numbers Only
  'otherExtension':   /^[0-9]{0,6}$/,					// 0 to 6, Numbers Only
  'cellPhone':        /^[0-9]{0,12}$/,					// 0 to 12, Numbers Only
  'cellExtension':    /^[0-9]{0,6}$/,					// 0 to 6, Numbers Only
  
  'homePhoneUS':        /^[0-9]{10}$/,					// 10, Numbers Only for US&Canada
  'workPhoneUS':        /^[0-9]{10}$/,					// 10, Numbers Only for US&Canada
  'faxPhoneUS':        /^[0-9]{10}$/,					// 10, Numbers Only for US&Canada
  'otherPhoneUS':        /^[0-9]{10}$/,					// 10, Numbers Only for US&Canada
  'cellPhoneUS':        /^[0-9]{10}$/,					// 10, Numbers Only for US&Canada
  
  'website':          /^([\w-]+\.+[\w-]+\.+[\w-]+|[a]{0})$/,
  'businessEmail':    /[\w-]+@([\w-]+\.)+[\w-]+/,		// approximates a valid email.
  'personalEmail':    /[\w-]+@([\w-]+\.)+[\w-]+/,		
  'secondEmail':    /[\w-]+@([\w-]+\.)+[\w-]+/,					// approximates a valid email.
  'optional_form_field':  /^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \_\.\-\']{0,180}$/,	//	0 to 180, alphanumerics, Space, Dash, Underscore, Period, Apostrophe
  'FF_userId': /^(?=.*[a-zA-Z0-9])[A-Za-z0-9_\-]{1,15}$/, //   1 to 10, alphanumerics, dash, and underscore (at least one word character)
  'FF_password': /^(?=.*[a-zA-Z0-9])[A-Za-z0-9_\-]{1,15}$/, //   1 to 10, alphanumerics, dash, and underscore (at least one word character)
  'captchaCode' : /(?=.*\w)/ ,
  'linkName' : /^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \.\-\_\']{0,30}$/, // my menu Link names regex
  'linkRoll' : /^$|^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \_\.\-\']{0,128}$/, // my menu Link rollovers regex, can be empty
  'rollover' : /^$|^(?=.*[a-zA-Z0-9])[A-Za-z0-9 \_\.\-\']{0,128}$/, // my menu Button rollovers regex, can be empty
  'width'    : /^[0-9]{1,4}$/,										// my menu width regex
  'height'   : /^[0-9]{1,4}$/,										// my menu height regex
  'ownLink'	 : /^http\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?$/		// my menu Own link regex
};

var errorMessages =
{
  /*
    * a. Error Messages will be shown for registration fields
    */	
/*		
  'link_alias' :      'Link Alias must be 10-30 alphanumeric characters.  May NOT include spaces, and can include dash or underscore.',
  'profile_page_name':'Profile Page name must be less than 45 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers',
  'user_id':          'user Id must be valid email address',
*/
  'link_alias' :      'Must be 3-30 characters in length.  Can include letters, numbers, dashes, and underscores.',
  'profile_page_name': 'Must be 3-45 characters in length.  Can include letters, numbers, dashes, underscores, spaces, periods, and apostrophes.',
  'user_id':          'Must be a valid e-mail address. Maximum 60 characters in length',
  
//  'password1':        'Password must be 8-30 characters. May NOT include spaces, and may include dash or underscore.',
   'password1' : 		'Must be 8-30 characters in length.  Can include letters, numbers, dashes, and underscores.',
   'oldPassword' : 		'Must be 8-30 characters in length.  Can include letters, numbers, dashes, and underscores.',
   'newPassword1' : 	'Must be 8-30 characters in length.  Can include letters, numbers, dashes, and underscores.',
     
//	deprecated   
//  'organizationNameTextEntry': 'Organization name MUST be exactly as provided by your Master Member Organization.',
//  'organizationPassword':     'Valid Organization passwords MUST be exactly as provided by your Master Member Organization',
  
//  'firstName':        'First name should be less than 30 characters, can include spaces, dashes, periods and apostrophes',
// 'lastName':         'Last name should be less than 30 characters, can include spaces, dashes, periods and apostrophes',
// 'initial' :         'Invalid initial',
   'firstName': 		'Can be 1-30 characters in length.  Can include letters, dashes, spaces, periods, and apostrophes.',
   'lastName': 		  	'Can be 1-30 characters in length.  Can include letters, dashes, spaces, periods, and apostrophes.',
   'initial' : 			'Must be in caps.',

//   'companyName' :      'Company names must be less than 45 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers',
//   'companySecondName': 'Company Second Name must be less than 45 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers',
   'companyName':		'Company Name can be 1-45 characters in length.  Can include letters, numbers, dashes, spaces, periods, and apostrophes.',
   'companySecondName': 'Company Second Name can be 1-45 characters in length.  Can include letters, numbers, dashes, spaces, periods, and apostrophes.',
  
//  'unitNumber':       'Valid Unit umbers will be less than 10 alphanumerics, may include Dash and Period',
   'unitNumber':		'Unit Number can be 1-10 characters in length.  Can include numbers, letters, dashes, and periods.',
//  'address1':         'Address1 must be less than 45 alphanumerics, may include space, dash, period and apostrophe',
// 'address2':         'Address2 must be less than 45 alphanumerics, may include space, dash, period and apostrophe',
  'address1':			'Address1 can be 1-45 characters in length.  Can include letters, numbers, spaces, apostrophes, dashes, and periods.',
  'address2':			'Address2 can be 1-45 characters in length.  Can include letters, numbers, spaces, apostrophes, dashes, and periods.',
  
//  'city':             'City names must be less than 45 characters, may include spaces, dash, period and apostrophe',
  'city':			'Can be 1-45 characters in length.  Can include letters, dashes, spaces, periods, and apostrophes.',
  
  'manualProvinceEntry':'Please enter the name of your state or province',
  'postalCode':         'Canadians:  X1X 1X1; Americans: 99999-9999 or 99999',
  'postalCode4Canada':	'Canadian Zip Code e.g. G3M 5T9 | C3M5T9',
  'postalCode4US':		'US Zip Code + 4 digit extension Postal Code e.g. 14467 | 144679554 | 14467-9554',
  'postalCodeOthers':	'Invalid postal code',

  'homePhone':        'Invalid Phone Main Numbers',
  'homeExtension':    'Invalid Phone Main Extension',
  'workPhone':        'Invalid Business Phone Numbers',
  'workExtension':    'Invalid Business Phone Extension',
  'faxPhone':         'Invalid Fax Numbers',
  'faxExtension':     'Invalid Fax Extension',
  'otherPhone':       'Invalid Other Phone Numbers',
  'otherExtension':   'Invalid Other Phone Extension',
  'cellPhone':        'Invalid Mobile Phone numbers',
  'website':          'Invalid website address',
  'businessEmail':    'Invalid Business Email address',
  'personalEmail':    'Invalid Personal Email address',		
  'secondEmail':      'Invalid Alternate Email address',
  'dateOfBirth':	  'Must be older than 13 years',
  'homePhoneUS':	  'Invalid Phone Number. it Should be 10 Digits',	
  'select':			  'It is mandatory to choose one',
  'optional_form_field':  'Optional fields only allowed to be alphanumerics, Space, Dash, Underscore, Period and Apostrophe '
	  
  /*
   * b. Error Messages for Organization Registration
   	  
  'orgOfficialName':   'Charity/ School/ Non Profit Name must be less than 45 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers',
  'registrationId':	   'Registration ID must be less than 20 characters. Can include spaces and Dashes',
  'NotificationEmail':'Invalid Personal Email address',
  'organization_name':'Organization Name must be less than 55 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers'	
//  'organization_desc':'Organization Description must be less than 1000 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers'
*/ 
};

var toolTips =
{
/*		
  'link_alias' :      '-You may access your profile page with this link alias name<br>&nbsp;&nbsp;&nbsp; (e.g. www.vengeo.com/link_alias)<br>- Link Alias must be 10-30 alphanumeric characters.  May NOT include spaces, and can include dash or underscore.',
  'profile_page_name':'Profile Page Name must be less than 45 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers',
  'user_id':          'User Id must be valid active email',
*/
  'alias' :      'Your Alias will be your name for Vengeo Social. This will be what other users will see when viewing your content. You will not be able to modify your Link Alias.<br><br>Must be 3-30 characters in length.  Can include letters, numbers, dashes, and underscores, BUT NO SPACE.',
  'link_alias' :      'Your Web URL will form part of your Profile Page URL (www.vengeo.com/linkalias) and your publication URLs (www.vengeo.com/linkalias/publicationname).  You will not be able to modify your Web URL.<br><br>Must be 3-30 characters in length.  Can include letters, numbers, dashes, and underscores.',
  'profile_page_name':'Your Profile Page Name will appear as the title heading on your Profile Page.  You will be able to modify your Profile Page Name.<br><br>Must be 3-45 characters in length.  Can include letters, numbers, dashes, underscores, spaces, periods, and apostrophes.',
  'promoImage' : 'Promo Image must be an image (BMP,PNG,JPG, JPEG and GIF). <br />Your Promo Image will be reduced to fit 900 pixels wide while maintaining aspect ratio.',
  'logoImage' : 'Logo Graphic must be an image (BMP,PNG,JPG, JPEG and GIF). <br />Your logo will be resized to 65hx140w.',
  'user_id':          'Your email address will be your Vengeo User ID, and you will use it to log in to your account.  All confirmations and email notifications are sent to this email address - remember to check your Junk Mail!!! <br><br>Must be a valid e-mail address.',
  'user_id_social':          'Your email address will be your Social User ID, and you will use it to log in to Larynx and RendezVous.<br><br>Must be a valid e-mail address.',
//  'password1':        'Password must be 8-30 characters. May NOT include spaces, and may include dash or underscore.',
  'password1' : 'Your Password Must be 8-30 characters in length.  Can include letters, numbers, dashes, and underscores.',
  
//  'organizationTypeDropDown': '<strong>THIS IS NOT MANDATORY.</strong> <br><br>If you choose a Charity, Non-Profit, or School, Vengeo will give 20% of your publication&rsquo;s ad revenue to your chosen Charity/Non-Profit/School.  If you choose Private, 20% will go to the Private organization you choose below. <br><br>Choose an Organization Type from the drop down list to the left.  Then choose the Organization name below.<br>  Vengeo has four types of registered Organizations: Charity, Non-Profit, School, or Private. <br>',
  'organizationTypeDropDown': 'COMING SOON: Vengeo will contribute 20&amp; of all advertising revenues generated from your publications to the organization of your choice.',
//  'organizationNameDropDown': 'First choose an Organization Type from the drop down list above.  Then choose an Organization Alias Name from the drop down list to the left.',
  'organizationNameDropDown': '',
//  'salutation': 	   'Choose name prefix from drop down',
  'salutation':		'',
  
//  'firstName':        'First name should be less than 30 characters. May not include numbers, and can include spaces, dashes, periods and apostrophes',
//'lastName':         'Last name should be less than 30 characters. May not include numbers, and can include spaces, dashes, periods and apostrophes',
//'initial' :         'Middle Initial should be one capital letter',
  'firstName': 		'Your First Name can each be 1-30 characters in length.  Can include letters, dashes, spaces, periods, and apostrophes.',
  'lastName': 		'Your Last Name can each be 1-30 characters in length.  Can include letters, dashes, spaces, periods, and apostrophes.',
  'initial' : 		'Your Initail must be in caps.',

	
//  'companyName' :      'Company Name must be less than 45 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers',
//  'companySecondName': 'Company Second Name must be less than 45 characters. Can include Letters, Spaces, Dash, Period, Apostrophe and Numbers',
  'companyName' 	: 'Your Company Name can be 1-45 characters in length.  Can include letters, numbers, dashes, spaces, periods, and apostrophes.',
  'companySecondName':'Your Company Second Name can be 1-45 characters in length.  Can include letters, numbers, dashes, spaces, periods, and apostrophes.',
  
//  'unitNumber':       'Valid Unit Numbers will be less than 10 alphanumerics, may include Dash and Period',
  'unitNumber':		'Unit Number can be 1-10 characters in length.  Can include numbers, letters, dashes, and periods.',
//  'address1':         'Address 1 must be less than 45 alphanumerics, may include space, dash, period and apostrophe',
//  'address2':         'Address 2 must be less than 45 alphanumerics, may include space, dash, period and apostrophe',
  'address1':		'Address1 can be 1-45 characters in length.  Can include letters, numbers, spaces, apostrophes, dashes, and periods.',
  'address2':		'Address2 can be 1-45 characters in length.  Can include letters, numbers, spaces, apostrophes, dashes, and periods.',
  
//  'city':             'City names must be less than 45 characters, may include space, dash, period and apostrophe',
//  'country':		  'Choose Country name from Drop Down',
  'city':			'City can be 1-45 characters in length.  Can include letters, dashes, spaces, periods, and apostrophes.',
  'country': 		'',
  	
//  'province':		  'If you select country name Canada or US, Choose province&frasl;state from drop down. Otherwise, please Enter the name of your state or province that should be less than 30 Letters , and may include Space, Dash, Period and Apostrophe',
//'postalCode':       '- Canadian Zip code should be like this G3M 5T9 | C3M5T9. <br>- US Zip Code(+ 4 digit extension) should be like this 14467 | 144679554 | 14467-9554<br>- Other Country : Enter zip code that should be less than 12 alphanumerics. Dash and Period are allowed',  
  'province':		  'Registrants from Canada or the United States can select their province or state from the drop-down list.  All other registrants can enter a Province or State that is 1-30 characters in length.  Can include letters, dashes, spaces, periods, and apostrophes.',
  'postalCode':		  'Canadian Postal Codes can be entered in the following formats: A1B 2C3 or A1B2C3.<br><br>U.S. Zip Codes (and 4-digit extensions) can be entered in the following formats: 12345 or 12345-9999 or 123459999<br><br>Registrants outside of Canada or the U.S. can enter a Postal/Zip Code that is 1-12 characters in length.  Can include letters, numbers, dashes, and periods.',

  'homePhone':        'Canada & U.S. phone numbers should include the area code and consist of 10 digits.<br>Registrants outside of Canada or the U.S. can enter a phone number up to 12 digits long.<br>Extension numbers can be up to 6 digits long.',
  'workPhone':        'Canada & U.S. phone numbers should include the area code and consist of 10 digits.<br>Registrants outside of Canada or the U.S. can enter a phone number up to 12 digits long.<br>Extension numbers can be up to 6 digits long.',
  'otherPhone':       'Canada & U.S. phone numbers should include the area code and consist of 10 digits.<br>Registrants outside of Canada or the U.S. can enter a phone number up to 12 digits long.<br>Extension numbers can be up to 6 digits long.',
  'faxPhone':         'Canada & U.S. phone numbers should include the area code and consist of 10 digits.<br>Registrants outside of Canada or the U.S. can enter a phone number up to 12 digits long.',
  'cellPhone':        'Canada & U.S. phone numbers should include the area code and consist of 10 digits.<br>Registrants outside of Canada or the U.S. can enter a phone number up to 12 digits long.',
  'website':          '',
  'businessEmail':    '',
  'personalEmail':    'Put valid Personal Email address',		
  'secondEmail':      '',
  'dateOfBirth':	  'Registrants must be at least 13 years old.',
  'gender':			  '',
  'makePublic':		  'We respect your privacy.  The CHECK-BOXES to the LEFT represent the fields that you want displayed to the public.  If you check the box, that Contact Info item will be Searchable and displayed within your e-Publications (PiP-Catalogues).  You can change this later in your My Account page.',
//  'homePhoneUS':	  'Invalid Phone Number. it Should be 10 Digits',	
//  'select':			  'It is mandatory to choose one',
//  'optional_form_field':  'Optional fields only allowed to be alphanumerics, Space, Dash, Underscore, Period and Apostrophe '
  'description':	  'Please enter a short description telling other Vengeo and Vengeo Social members who you are',
  'captchaCode':      'If you cannot see the verification code, please refresh by clicking the captcha image',
  'cropPromoImage':   'Upon clicking [submit] below, upon uploading you will be provided a way to crop a portion of the promo Image to become your Thumbnail Logo, within a dimension of 140w x 65h.',
  'anotherImage':     'Upload a different Image.  We recommend an image that is 140w x 65h pixels, otherwise your Image will be reduced to fit.',
  'usePromoImage' :   'Upon clicking [Submit] below, the Image you upload above will be used as your Thumbnail Image (Logo), although the same Image, the Thumbnail will be reduced to fit inside a pixel perimeter of 140w x 65h.',
  'chooseProfilePage' : 'If your VMP=1 (Vengeo Membership Plan), you can use only Standard Page, if VMP>1, you can choose a page from "PET Page" drop-down list, that will be your Profile Page ',
  'optionPetHorizontalScroll' : 'If checked, Pet Page is displayed in full width, even if wider than the Profile Page. If uncheked, Pet Page appears the width of the Profile Page with an internal scroll bar'
};

var guide =
{
/*		
  'link_alias' :      '10 to 30 Characters  (Suggestion : Julie_Wilson or MyCompany-Enterprises)',
  'profile_page_name':'Max 45 characters (Letters, Space, Dash, Period, Apostrophe, Numbers)',
  'user_id':          'Use your email address for User Id',
*/
  'link_alias' :      'e.g. www.vengeo.com/<b><dfn>examplename</dfn></b>',
  'profile_page_name':'e.g. My Photo Studio',
  'user_id':          'e.g. example@youremail.com',		

//  'password1':        '8 to 30 Characters (Alphanumeric, Dash, Underscore e.g. AbC_123-a1B2c3)',
  'password1':			'',
  
//  'organizationTypeDropDown': 'NOT MANDATORY : Help a Charity, Non-Profit, School, or Private group.',
//'organizationNameDropDown': 'Choose name from Drop Down',
//'salutation'				: 'Mr, Mrs, Miss, Ms, Dr',
//  'firstName':        'Max 30 characters (Letters, Space, Dash, Period, Apostrophe)',
//  'initial' :         'One Capital Letter',
//  'lastName':         'Max 30 characters (Letters, Space, Dash, Period, Apostrophe)',
//'companyName' :      'Max 45 characters (Letters, Space, Dash, Period, Apostrophe, Numbers)',
//'companySecondName': 'Max 45 characters (Letters, Space, Dash, Period, Apostrophe, Numbers)',
//  'unitNumber':       'Apt, Unit, Suite(Letters, Dash, Period, Numbers)',
//  'address1':         'Max 45 characters (Letters, Space, Dash, Period, Apostrophe, Numbers)',
//  'address2':         'Max 45 characters (Letters, Space, Dash, Period, Apostrophe, Numbers)',
//  'city':             'Max 45 characters (Letters, Space, Dash, Period, Apostrophe)',
//  'country':		  'Choose a Country from Drop Down',
//  'province':		  'Canada/US: Choose one from drop down , Other countries: Max 30',
//  'postalCode':       'Canada: G3M 5T9 , US: 14467 | 14467-9554 , Other countries: Max 12',

//  'homePhone':        'Numbers ONLY (Canada &amp; US format is 10 digit, Must include area code)',
//  'workPhone':        'Numbers ONLY (Canada &amp; US format is 10 digit, Must include area code)',
//  'otherPhone':       'Numbers ONLY (Canada &amp; US format is 10 digit, Must include area code)',
// 'faxPhone':         'Numbers ONLY (Canada &amp; US format is 10 digit, Must include area code)',
//  'cellPhone':        'Numbers ONLY (Canada &amp; US format is 10 digit, Must include area code)',
//  'website':          'Format www.mywebsitename.ext',
//  'businessEmail':    'Format myname@mywebsitename.ext',
//  'personalEmail':    'Invalid Personal Email address',		Deprecated
//  'secondEmail':      'Format myname@mywebsitename.ext',
//  'dateOfBirth':	  'Month, Day, Year (Minimum 13 years) ',
//  'gender':			  'Male, Female'
//'homePhoneUS':	  'Invalid Phone Number. it Should be 10 Digits',	
//'select':			  'It is mandatory to choose one',
//'optional_form_field':  'Optional fields only allowed to be alphanumerics, Space, Dash, Underscore, Period and Apostrophe '  
  
  'organizationTypeDropDown': '',
  'organizationNameDropDown': '',
  'salutation':'',
  'firstName': '',
  'initial' : '',
  'lastName': '',
  'companyName' : '',
  'companySecondName':'',
  'unitNumber': '',
  'address1': '',
  'address2': '',
  'city': '',
  'country':'',
  'province':'',
  'postalCode':'',
  'homePhone':'',
  'workPhone':'',
  'otherPhone':'',
  'faxPhone':  '',
  'cellPhone': '',
  'website': '',
  'businessEmail':'',
  'secondEmail':'',
  'dateOfBirth':	  'NOTE: Registrants must be at least 13 years old',
  'gender': '',
  'captchaCode': ''
};

/* Depreated   - use textToolTip() in ajaxIndex.jsp
 * 
	function regToolTip(msg){
		Tip("<div style='width:350px;'>" +
				"<table width=350 border=0 cellspacing=0 cellpadding=0 bgcolor='#E0FFFF'>" +
					"<tr><td><font size=1>"+msg+"</font>" +
					"</td></tr>" +
				"</table></div>");	
	}
*/

