/*
' Copyright (c) 2007 Affno (Pvt) Ltd, . All rights reserved.
'
' This software is the confidential and proprietary information of        
' Affno  ("Confidential Information").  You shall not disclose such 
' Confidential Information and shall use it only in accordance with
' the terms of the license agreement you entered into with Affno.
'
'Module Name	: AFF_reUsed
' File Name		: contact_us.js
' Description	: This is the page where we validate the form.
' Created By	: Roshani de Silva
' Created Date	: 05-Dec-2011
' Modified By	: 
' Modified Date	: 
' Version		: 1.00.000
*/


//JavaScript error messages

	msgError_emptyFullname = "Please enter your Full Name"
	msgError_validFullname = "Please enter a valid entry for the Full Name"
	msgError_spaceFullname = "Spaces are not allowed. "+msgError_validFullname
	
	//Name
	msgError_emptyName = "Please enter your Name"
	msgError_validName = "Please enter a valid entry for the Name"
	msgError_spaceName = "Spaces are not allowed. "+msgError_validName
	
	//Time
	msgError_emptyTime = "Please enter a convenient Time"
	msgError_validTime = "Please enter a valid entry for the Time"
	msgError_spaceTime = "Spaces are not allowed. "+msgError_validTime
	
	//Email
	msgError_emptyEmail	= "Please enter your Email Address"
	msgError_validEmail	= "Please enter a valid entry for the Email Address \nEg: abc@domainname.com"
	msgError_spaceEmail	= "Spaces are not allowed. "+msgError_validEmail
	
	//Address
	msgError_emptyAddress = "Please enter your Mailing Address"
	msgError_spaceAddress = "Spaces are not allowed. "+msgError_emptyAddress
	
	//State
	msgError_validState = "Please enter a valid entry for the State "
	msgError_spaceState = "Spaces are not allowed. "+msgError_validState
	
	//Zip
	msgError_validZip = "Please enter a valid entry for the Zip/Postal Code "
	msgError_spaceZip = "Spaces are not allowed. "+msgError_validZip
	
	//Age
	msgError_validAge = "Please enter a valid entry for the Age. Only Numbers are allowed "
	msgError_spaceAge = "Spaces are not allowed. "+msgError_validAge
	
	//Telephone
	msgError_emptyResidance = "Please enter a Residance Phone Number "
	msgError_validResidance	= "Please enter a valid entry for the Residance Phone Number "
	msgError_spaceResidance	= "Spaces are not allowed. "+msgError_validResidance
	
	//Telephone 2
	msgError_emptyTelephone = "Please enter a Phone Number "
	msgError_validTelephone	= "Please enter a valid entry for the Phone Number "
	msgError_spaceTelephone	= "Spaces are not allowed. "+msgError_validTelephone
	
	//Company
	msgError_emptyCompany = "Please enter your company name"
	msgError_validCompany = "Please enter a valid entry for company name"
	msgError_spaceCompany = "Spaces are not allowed. "+msgError_validCompany
	
	//Street
	msgError_emptyStreet = "Please enter your Street name"
	msgError_validStreet = "Please enter a valid entry for Street name"
	msgError_spaceStreet = "Spaces are not allowed. "+msgError_validStreet
	
	//city
	msgError_emptycity = "Please enter your city name"
	msgError_validcity = "Please enter a valid entry for city name"
	msgError_spacecity = "Spaces are not allowed. "+msgError_validcity
	
	//SalesAgent
	msgError_emptySalesAgent = "Please enter your Sales Agent name"
	msgError_validSalesAgent = "Please enter a valid entry for Sales Agent name"
	msgError_spaceSalesAgent = "Spaces are not allowed. "+msgError_validSalesAgent
	
	//Comment
	msgError_emptyComment = "Please enter your Message"
	msgError_spaceComment = "Spaces are not allowed. "+msgError_emptyComment
	msgError_lengthOfComment = "The length of the Message cannot exceed 5000 characters"
	
	//Office
	msgError_validOffice = "Please enter a valid entry for the Office Phone Number "
	msgError_spaceOffice = "Spaces are not allowed. "+msgError_validOffice
	
	//Country
	msgError_SelectCountry = "Please select a Country "
	
	//Desired Position
	msgError_SelectPosition = "Please select Desired Position/s"
	
	//Mobile
	msgError_validMobile = "Please enter a valid entry for the Mobile Number "
	msgError_spaceMobile = "Spaces are not allowed. "+msgError_validMobile
	
	//upload CV 
	msgError_emptyCV = "Please attach your CV"
	msgError_fileLenthCV = "Please attach your File - The file name must not exceed 150 characters"
	msgError_validCv = "Please enter a valid File type"
	msgError_spaceCV = "Spaces are not allowed. "+msgError_emptyCV
	
	//Capcha image
	msgError_emptyCapchaCode = "Please enter the Capcha Code"
	msgError_validapchaCode	= "Please enter a valid entry for the Capcha Code. The characters were WRONG!"
	msgError_spaceapchaCode	= "Spaces are not allowed. "+msgError_validName
