/*
-------------------------------------------------------------------------------------------------------------	
	Description	:	This files contains general purpose validations messages. 
-------------------------------------------------------------------------------------------------------------	
*/	
// Global constants for the error messages
var Err_SelectId				=	"Please check at least one checkbox.";
//ATM Locations Search
var Err_SelectSearchCriteria	= 	"Please select ATM or branch location.";
var Err_Zip						=	"Please enter the zip code.";
var Err_CityZip					=	"Please enter the city/ state or the zip code.";
var Err_City 					=	"Please enter the city.";
var Err_State					=	"Please select the state.";
//Site Serach
var Err_SearchText				=   "Please enter the search text.";
//Contact us
var Err_Name					=	"Please enter the name.";
var Err_Address					=	"Please enter the address.";
var Err_Email					=	"Please enter the email address.";
var Err_ValidEmail				=	"Please enter a valid email address.";

//Product Finder
var Err_Balance_Range			= "Please select the balance range.";

//Financial Advisors
var Err_BranchZip				= "Please enter the zipcode or the branch.";
var Err_AccountType				= "Please select the sub-account type.";

//Netteller applications

var Err_FirstName				=	"Please enter the first name.";
var Err_LastName				=	"Please enter the last name.";
var Err_BusinessName			=	"Please enter the business name.";
var Err_SSN						=	"Please enter the social security number.";
var Err_TAX						=	"Please enter the TAX ID number.";
var Err_HomePhone				=	"Please enter the home phone number.";
var Err_BusinessPhone			=	"Please enter the business phone number.";
var Err_Account				    =	"Please list at least one account.";
var Err_AccountName				=	"Please enter valid descriptive account name.";

//Smart Money
var Err_Contact					=	"Please enter phone number or email id.";

//RSVP
var Err_phone					=  "Please enter the telephone number.";
//Inviataion to join
var Err_StateText				=	"Please enter the state.";
// Global constants for the validation petterns
	var vld_Name = /^[a-zA-Z ]*$/
	var vld_CompanyName = /^[a-zA-Z0-9. ]*$/
	var vld_OtherName = /^[a-zA-Z0-9. ]*$/
	var vld_FirstName = /^[a-zA-Z]*$/
	var vld_MiddleName = /^[a-zA-Z]*$/
	var vld_LastName = /^[a-zA-Z]*$/
	var vld_Description  = /^[\s\S]*$/
	var vld_City =  /^[a-zA-Z- &]*$/
	var vld_State =  /^[\s\S]*$/
	var vld_Country =  /^[\s\S]*$/
	var vld_Address =  /^[\s\S]*$/
	var vld_Title =  /^[\s\S]*$/
	var vld_RealNumber =/^([0-9]*(\.[0-9]*)?)?$/
	var vld_Integer =/^[0-9]*$/
	var vld_AlphaNumeric = /^[a-zA-Z0-9]*$/
	var vld_URL =  /^[\d\D]*$/
	var vld_FilePath =  /^[a-zA-Z]:(\\[a-zA-Z0-9_]+)+$/
	var vld_UserName =  /^[a-zA-Z0-9_]*$/
	var vld_Password =  /^[a-zA-Z0-9_]*$/
	var vld_ZipCode =  /^[\s\S]*$/
	var vld_Phone =  /^[\s\S]*$/
	var vld_Fax =  /^[\s\S]*$/
	var vld_MobileNumber = 	/^[0-9\(\)\- ]*$/
	var vld_Email =  /^(([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?))?$/
	var vld_WebSite =  /^[\s\S]*$/
	var vld_ShortDescription = /^[\s\S]*$/
	var vld_LongDescription = /^[\s\S]*$/
	var vld_SerialNumber =  /^[\s\S]*$/
	var vld_AcctName =  /[&\$',@!%*\/\\#]/
	
	
