/*
' Copyright (c) 2000 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.
'
' File Name		: clientSudemsg.php
' Description	: This is the page where we create client side messages.
' Created By	: Punya Bogodapola
' Created Date	: 21-October-2004
' Modified By	: 
' Modified Date	: 
' Version		: 1.00.000
*/


//JavaScript error messages

//contact us form
//Full name

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

//Company
msgError_validCompany = "Please enter a valid entry for the Company"

//address
msgError_emptyAddress 	= "Please enter your Address"
msgError_validAddress 	= "Please enter a valid entry for the Address"
msgError_spaceAddress 	= "Spaces are not allowed. "+msgError_validAddress
msgError_lengthOfAddress="The length of the Address cannot exceed 150 characters"

//City
msgError_validCity= "Please enter a valid entry for the City"

//State
msgError_validState= "Please enter a valid entry for the State/Province/Region"


//Zip
msgError_validZip= "Please enter a valid entry for the Zip/Postal Code"

//Country
msgError_validCountry= "Please enter a valid entry for the Country"

//Telephone
msgError_emptyTelephone= "Please enter your Telephone Number"
msgError_validTelephone= "Please enter a valid entry for the Telephone Number"
msgError_spaceTelephone= "Spaces are not allowed. "+msgError_validTelephone

//Fax
msgError_validFax= "Please enter a valid entry for the Fax Number"

//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

//Message
msgError_emptyMessage= "Please enter your Message"
msgError_validMessage= "Please enter a valid entry for the Message"
msgError_spaceMessage= "Spaces are not allowed. "+msgError_validMessage
msgError_lengthOfMessage="The length of the Message cannot exceed 1000 characters"

//Comments
msgError_lengthOfComments="The length of the Comments cannot exceed 2000 characters"

//Designation
msgError_emptyDesignation = "Please enter your Desired Position"
msgError_validDesignation = "Please enter a valid entry for the Desired Position"
msgError_spaceDesignation = "Spaces are not allowed. "+msgError_validDesignation

//Username
msgError_emptyUsername = "Please enter your Username"
msgError_validUsername = "Please enter a valid entry for the Username"
msgError_spaceUsername = "Spaces are not allowed. "+msgError_validUsername

//Password
msgError_emptyPassword = "Please enter your Password"
msgError_validPassword = "Please enter a valid entry for the Password"
msgError_spacePassword = "Spaces are not allowed. "+msgError_validPassword

//cv upload
msgError_validFile 		= "Please select a valid File"
msgError_lengthOfFile	= "The length of the CV cannot exceed 100 characters"
msgError_emptyFile   	= "Please attach your CV"
