/**
* Filename: common_js_values.js
* Purpose: This page has all the js constant values used in the application.
* Tables: None 
**/

//# Site url to be used in js pages
var SITE_URL='http://www.lookiyer.com/';

//# Number of locations limit
var loc_limit=3; //loc_limit=0 --- for no limit
// ************************Messages************************************

//#Common validation messages
var no_country='Please select a country.';
var no_state='State data error. Type a few characters for state, then matching data will be displayed in a dropdown list. This may take a few microseconds, please be patient. You are only permitted to select from dropdown data list. This is because we want to offer you location specific data.';
var no_suburb='Suburb data error. Type a few characters for suburb, then matching data will be displayed in a dropdown list. This may take a few microseconds, please be patient. You are only permitted to select from dropdown data list. This is because we want to offer you location specific data.';
var no_records='No Records';


//#Register form validation messages
var no_fname='Please enter first name.';
var no_lname='Please enter last name.';
var no_busname='Please enter the business name.';
var no_email='Please enter an email address.';
var no_password='Please enter a password.';
var valid_email='Please enter a valid email address.';
var no_repassword='Please confirm the password.';
var password_mismatch='Passwords not matching.';
var password_limit='Password must be between 8 to 16 characters.';
var accept_terms='Please tick box to accept conditions.';
var valid_mobileno='Please enter a valid mobile number.';
var valid_altphoneno='Please enter a valid alternate phone number.';
var valid_fname='Please enter a proper first name.';
var valid_lname='Please enter a proper last name.';
var valid_password='Special characters are not allowed in password.';
var no_postcode='Please enter Postcode.';

//#File Validation messages
var file_type_errmsg="File should be .doc or .pdf";


//#Service & Job Details form validation messages
var no_industry="Please select an industry.";
var no_services="Please select a service.";
var no_strtdate="Please enter the start date.";
var less_currentdate="Start date cannot be less than current date.";
var no_location="Please select a location.";
var no_rate_and_freq="Please enter the rate and select a frequency.";
var no_rate="Please enter the rate.";
var no_rate_comp="Please select a rate comparison.";
var no_freq="Please select a frequency.";
var no_country_rate_freq="Please select a country since rate and frequency are selected.";
var no_loc_combo="Please select all information for location."
var no_job_days="Please check at least one working day.";
var no_same_freq="You cannot select the same frequency. \n Please select another one.";
var no_ratecomp_freq="Please select the rate comparison and frequency.";
var no_services_available="There are no Services currently available for this Industry. \n Please email us the desired industry and or service types to <a href='mailto:admin@lookiyer.com'>admin@lookiyer.com</a>";
var valid_enddate="Please enter a valid end date.";
var no_location_info="Please select the country, state, suburb and location type.";
var diff_loc_combination="You cannot select the same combination for location.";
var all_location="Please select all information for location.";
var no_job_adverised="No Jobs Advertised.";
var no_service_adverised="No Services Advertised.";
var add_location="Please add at least one location.";
var add_rate="Please add at least one rate.";
var rate_numeric="Rate should be numeric.";
var loc_limit_reached="Sorry, you cannot add more than 3 locations.";
//#Search messages
var no_criteria="Please select at least one criteria for search.";

//#New date validation constants 
var enddate_less_startdate="End date cannot be less than start date.";
var enddate_less_currentdate="End date cannot be less than today.";

//#Login Messages
var no_username_password="Please enter both the username and password to login.";

//#Forgot Password and Change Password Messages
var no_username="Please enter the username.";
var no_blank_passwords="Please enter all the values.";
var no_same_passwords="Old password and New password cannot be the same. Please enter a different one.";

//Send Email messages 
var no_empty_text="Please enter the email text first.";

//Delete Confirmation messages 
var DEL_JOB="Are you sure you wish to delete this job ?";
var DEL_SERVICE="Are you sure you wish to delete this service ?";
var FILE_UPDATE="If you upload this file than the old file will be deleted.Are U sure?";

//search
var PINCODE_TIP="Type in the pincode if not available in the dropdown list.";

// Auto complete
var AUTO_NO_STATE_FOUND="<font color='red'>No matching state available.<br>Hint: Do not use abbreviations (except Australia and USA states e.g. NSW, FL are allowed).</font>";
var AUTO_NO_SUBURB_FOUND="<font color='red'>No matching suburb available. E.g's are Sydney, San Francisco.<br>&nbsp;<br>Hint: Do not use abbreviations.<br></font>";

//NOTE: Change in constants.php
var AUTO_CONST_STATE="Type text, matching data is displayed. The list of data takes a few micro-seconds, please be patient.<b> Select from list only.</b>";
var AUTO_CONST_SURB="Type text, matching data is displayed. The data takes a few micro-seconds, please be patient.<b> Select from list only. </b>";
var AUTO_CONST_COUNTRY="Select the desired country";

// if no country is selected 
var AUTO_NO_COUNTRY_SEL="Please select country first.<br><br>&nbsp;";
var AUTO_NO_STATE_SEL="Please select a country and state first.<br>&nbsp;";
var AUTO_NO_POSTCODE_SEL="Please select desired country first.<br>&nbsp;";

