// 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 AB_CATEGORYNAME			= "Please enter the category name";
	var AB_CATEGORYSELECT		= "Please select the category";
	var CATEGORYDELETE			= "Are you sure you want to delete this category?";
	var AB_SUBCATEGORYSELECT	= "Please select the subcategory";
	var AB_SUBCATEGORYNAME		= "Please enter the subcategory name";
	var SUBCATEGORYDELETE		= "Are you sure you want to delete this subcategory?";
	
	
	var PRODUCTDELETE							= "Are you sure you want to delete the selected product(s)?";
	var PRODUCTDELETEFEATURED					= "Are you sure you want to delete this product from featured product list?";
	var P_NAME									= "Please enter product name";
	var P_QTY									= "Please enter product quantity";
	var P_QTY_NUM								= "Product quantity should be numeric"
	var P_WEIGHT								= "Please enter product weight";
	var PRICE_NUMERIC							= "Price should be numeric and greater than 0";
	var P_WEIGHT_NUM							= "Product weight should be numeric"
	var P_R_PRICE								= "Please enter product retail price";
	var P_R_PRICE_NUM							= "Retail price should be numeric";
	var P_S_PRICE								= "Please enter product selling price";
	var P_S_PRICE_NUM							= "Selling price should be numeric";
	var P_S_DESC								= "Please enter product's short description";
	var P_S_DETAIL								= "Please enter product's description";

	var AB_SUBCATEGORYNAME			= "Please enter the subcategory name";
	var AB_SUBCATEGORYSELECT		= "Please select the subcategory";

	var AI_IMAGEFORMAT			= "Please upload only gif, jpg or png image";
	var AB_IMAGE				= "Please browse image";
	var AO_CATEGORYDELETE		= "Are you sure you want to delete the selected category?";

	var AB_PAGEURL				= "Please enter page URL";
	var AB_PAGENAME				= "Please select page name";
	var AB_PAGETITLE			= "Please enter page title";
	var AB_METATITLE			= "Please enter meta title";
	var AB_PAGECONTENT			= "Please enter page description";
	var AO_PAGEDELETE			= "Are you sure you want to delete the selected content(s)?";
	var CONTENT					= "Please select content to delete";	

	var AB_EMAIL				= "Please enter Email address";
	var AB_USERNAME				= "Please enter username";	
	var AB_PASS					= "Please enter password";
	var AB_CONPASS				= "Please enter confirm Password";
	var AB_PASSOLD				= "Please enter old password";
	var AB_PASSNEW				= "Please enter new password";
	var AB_LOGINNAME			= "Please select login name";	
	var AB_PASSMISMATCH			= "Passwords you entered do not match. Please re-enter passwords.";	
	var AB_PASSSAME 			= "Old and new passwords are the same.";
    

	var AI_WEBSITE				= "Please enter valid website URL (e.g. http://www.example.com)";
	var AI_EMAIL				= "Please enter valid Email (e.g. test@example.com)";
	//var AI_USERNAME				= "Please enter username\n Username should have -,_,0-9,a-z and A-Z";
	var AI_USERNAME				= "Invalid username";
	
	var AI_URL					= "Please enter valid URL (e.g. http://www.example.com)";
	var AI_STARTENDDATE			= "Start date should not be larger then end date";
	var START_CURRENTDATE		= "Date should not be grater than current date";

	// Message variavles for Main Site.
	var AO_BANNERDELETE			= "Are you sure you want to delete this banner?";
	var MM						= "Please select month";
	var DD						= "Please select day of month";
	var YY						= "Please select year";
	var MINYY					= "Please select minimum experience year(s)";
	var MAXYY					= "Please select maximum experience year(s)";
	var AO_EVENTDELETE			= "Are you sure you want to delete this job?";
	
	var SHIPTITLE				= "Please enter shipping method";
	var SHIPDESC				= "Please enter short description";
	var MIN_SHIPPRICE			= "Please enter minimum price range";
	var MAX_SHIPPRICE			= "Please enter maximum price range";
	var SHIPPRICE				= "Please enter shipping price";
	var PRICENUM				= "Price should be numeric and geater than 0";	
	var AO_SHIPDELETE			= "Are you sure you want to delete this shipping method?";
	var AO_SELECTSHIP			= "Please select atleast one shipping method for deletion";
	var AO_SELECTORDER			= "Please select atleast one order for deletion";
	var AO_SELECTPRODUCT		= "Please select atleast one product for deletion";
			
	var FLEN					= "Field length exceeded maximum limit";
	var ORDERDELETE				= "Are you sure you want to delete selected order(s)?";
	
	
	
	
	var MEMBER_FNAME							= "Please enter first name"
	var MEMBER_LNAME							= "Please enter last name";
	var EMAIL									= "Please enter email id";
	var VALID_EMAIL								= "Please enter valid email id (e.g. test@example.com)";
	var VALID_CHAR_EMAIL						= "Sorry, an email id cannot start with a number(0-9), underscore(_), hyphen(-) & dot(.)";

	var ADDRESS									= "Please enter address1";
	var BADDRESS								= "Please enter address";
	var CITY									= "Please enter city name";
	var ZIP										= "Please enter post code";
	var VALIDZIP								= "Please enter numeric value in post code";
	var STATE									= "Please enter state name";
	var PHONE									= "Please enter phone number";
	var VALID_PHONE								= "Please enter valid phone number\n (e.g. min 10 digits 555-555-5555)";
    var USERNAME								= "Please enter username";
	var COUNTRY									= "Please select country name"
    var NAME									= "Please enter your name";
	var MB_EMAIL								= "Please enter email id";
	var PHONE									= "Please enter phone number";
	var ENQUIRY									= "Please enter your inquiry detail";