/*
' 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.asp
' 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

//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

//Email
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_lengthOfEmailAddress="The length of the Message cannot exceed 1000 characters"
