
// NUMBER OF ERROR LINE TO BE DISPLAYED
var error_limit=5;

// TO SET THE HEIGHT OF THE ERROR LINE
var pixel_per_line=20;

//login form: username,password,image verification
var login_usrpass="User name and password are required fields for authentication.";
var login_imgcode="Image verification code is a required field.";
var login_imgverify="Verification code did not match the text in the image.";

// index/search form
var prop_err="Property Id format is A999999 (A is an alphabet, 9 is a digit).";
var prop_ajxerr="There is no property with this id.";
var prop_id="Property id should be specified.";
var area_frm="Area 'from value' should be a number greater than zero.";
var areato_empty="If 'area from' value is entered, then you should also enter 'area to' value.";
var areato_err="Area 'to value' should be a number greater than zero.";
var areafrm_empty="If 'area to' value is entered, then you should also enter 'area from' value.";
var areato_frm="Area 'to value' should be greater than Area 'from value'.";
var price_frm="Price 'from value' should be a number greater than zero.";
var priceto_empty="If 'price from' value is entered, then you should also enter 'price to' value.";
var priceto_err="Price 'to value' should be a number greater than zero.";
var priceto_frm="Price 'to value' should be greater than Price 'from value'.";
var pricefrm_empty="If 'price to' value is entered, then you should also enter 'price from' value.";

//client register
var fname_empty="First name is a required field.";
var fname_err="First name field can only have alphabets, spaces and hyphens and start with an alphabet.";
var fname_shrt="First name cannot be shorter than 2 characters.";
var fname_lng="First name cannot be longer than 20 characters.";
var lname_empty="Last name is a required field.";
var lname_err="Last name field can only have alphabets, spaces and hyphens and start with an alphabet.";
var lname_shrt="Last name cannot be shorter than 2 characters.";
var lname_lng="Last name cannot be longer than 20 characters.";
var email_empty="Email id is a required field.";
var email_err="Email Id should be in form id@domain.com.";
var email_valid="Someone has already registered with this email id.";
var ph_empty="Phone number is a required field.";
var ph_err="Phone number must start with an optional + and can only have digits.";
var ph_less="Phone number must have at least seven digits but cannot be longer than 15.";
var state_err="State name can only have alphabets and spaces.";
var city_err="City name can only have alphabets and spaces.";
var user_empty="Username is a required field.";
var user_err="Username can only have alphabets,digits,underscore and dot.";
var user_errs="Username must start with an alphabet.";
var uname_shrt="Username should be at least 6 characters long.";
var uname_lng="Username cannot be longer than 12 characters.";
var user_exist="This username is already in use.";
var pass_empty="Password is a required field.";
var pass_shrt="Password must be at least 6 characters long.";
var pass_long="Password cannot be longer than 12 characters.";
var confrm_empty="Confirm password is a required field.";
var pass_usr="Password cannot be the same as username.";
var pasconf_err="'Confirm Password' does not match 'Password'.";
var img_code="Image verification code is a required field."; 			// common for most pages
var img_err="Verification code did not match the text in the image."; 				// common for most pages

//forgot password
var forgt_empty="Email id is a required field.";
var forgt_err="Email Id should be in form id@domain.com.";
var img_empty="Image verification code is a required field."
//var img_err="Verification code did not match the text in the image.";

//requirement, feedback
var comm_err="Comment cannot exceed 250 characters.";

//feedback
var comm_empty="Comment field cannot be left blank.";

//change password
var old_empty="Old password is a required field.";
var old_err="Old password is incorrect.";
var pass_err="Password must be at least six characters long but not longer than 12.";
var new_empty="New password is a required field.";
var cnfrm_empty="You have to reenter the new password here.";
var cnfrm_new="'Confirm Password' does not match 'New Password'.";
var old_new="New Password cannot be the same as old password.";

//No.of trees
var tree_error="Number of trees should be a number greater than zero.";

//Professionals
var empty_exp="Experience is a required field.";
var exp_err="Experience should be number greater than zero. "
var empty_enroll="Enrollment is a required field.";
var enroll_err="Enrollment number is not entered properly.";
var empty_add="Address is a required field.";
var empty_region="Region is not selected."; 
var town_arrow="Town is not selected.";
var empty_pincode="Pincode is not entered.";
var pincode_valid="Pincode can only accept a numeric value.";
var pincode_len="Pincode cannot be less than 6 digits.";
var empty_town="Town is a required field."
var state_empty="State is not selected.";
var empty_comments="Comments cannot be empty.";
var comments_lim="Comments cannot exceed 500 characters";
var max_exp="Experience must be less than 50 years";


