/* 
'-----------------------------------------------------------------------
'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.
'Module Name: Data Capture

'Module Name: MASWEB1
'File Name: mailMessages.asp
'Description: JavaScript error messages
'Created By: Roshani de Silva
'Created Date: 28-March-2005
'Modified By: 
'Modified Date: 
'Version: 1.00.000

'Copyright© 2003 Affno (Pvt) Ltd. All rights reserved.
'-----------------------------------------------------------------------
 */
 
//JavaScript error messages

//contact us form
//First name
	msgError_emptyFirstName = "Please enter your First Name"
	msgError_validFirstName = "Please enter a valid entry for the First Name"
	msgError_spaceFirstName = "Spaces are not allowed. "+msgError_emptyFirstName
	
//Last name
	msgError_emptyLastName = "Please enter your Last Name"
	msgError_validLastName = "Please enter a valid entry for the Last Name"
	msgError_spaceLastName = "Spaces are not allowed. "+msgError_emptyLastName
	
//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"

//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_emptyTelephone
	
//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_emptyEmail
	
//Comment
	msgError_emptyComment = "Please enter your Comment"
	//msgError_validComment = "Please enter a valid entry for the Comment"
	msgError_spaceComment = "Spaces are not allowed. "+msgError_emptyComment
	msgError_lengthOfComment = "The length of the Comment cannot exceed 500 characters"
	
//search
	msgError_emptySearch = "Please enter your Key word"
	msgError_spaceSearch = "Spaces are not allowed. "+msgError_emptySearch

