/*
' 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	: AFFWEB3
' File Name		: clientSudemsg.js
' Description	: This is the page where we create client side messages.
' Created By	: NISHAN SHANAKA
' Created Date	: 
' Modified By	: 
' Modified Date	: 
' Version		: 1.00.000
*/



//JavaScript error messages

	//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
	
	//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
	
	//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
	
	//Comment
	msgError_emptyComment = "Please enter your Comment"
	msgError_spaceComment = "Spaces are not allowed. "+msgError_emptyComment
	msgError_lengthOfComment = "The length of the Comment cannot exceed 5000 characters"
	
	//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