// JavaScript Document
/*
	A	-	Admin Section Message.
	M	-	Main Site Message.
	
		B	-	Blank Field.
		I	-	Invalid Field.
		O	-	Other validation.
*/
	// Message variavles for Admin Section.
	var MB_CONTACTNAMEFIRST			= "Please enter first name";
	var MB_CONTACTNAMELAST			= "Please enter last name";
	var MB_CONTACTEMAIL				= "Please enter Email address";
	var MB_CONTACTCOMMENTS			= "Please enter comments";

	var MI_CONTACTEMAIL				= "Please enter valid Email address";
	
	
	var MB_GENDER				= "Please select gender";	
	var MB_COUNTY				= "Please select county name";	
	var MB_ZIP					= "Please enter zip code";
	var MB_STATUS				= "Please select status of user";
	var MB_SELECTOPTION			= "Please select option";
	var MB_DIRECTORY			= "Please select directory option";
	
	// Message variavles for Main Site.
	var MO_AGREEMENT		= "Please read Terms & Conditions";
	var CARD				= "Credit card number should be numeric";