// 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_PROMOTIONCODE		= "Please enter giftcard code";
	var AB_PROMOTIONTITLE		= "Please enter giftcard title";					
	var AB_DISCOUNTRATE			= "Please enter discount rate";					
	var AB_ENDDATE				= "Please enter end date";
	var AI_DISCOUNTRATE			= "Please enter numeric value in discount rate";
	var AI_DISCOUNTRATEPERCENTAGE = "Please enter valid numeric value in discount rate ( As Percentage should be between 0-100)";

	var AB_USERNAME				= "Please enter username";	
	var AB_FIRSTNAME			= "Please enter first name";
	var AB_LASTNAME				= "Please enter last name";	
	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 typed do not match, please re-enter your passwords";	
	var AB_PASSSAME 			= "Old and new passwords are the same.";
	var AB_METATITLE			= "Please enter meta title";
	var AB_PAGENAME				= "Please select page name";	
	var AB_PAGECONTENT			= "Please enter page content";	
	var AB_ADDRESS				= "Please enter address";	
	var AB_CITY					= "Please enter city name";	
	var AB_STATE				= "Please select state name";	
	var AB_PHONE				= "Please enter phone no";	
	var AB_USERTYPE				= "Please select user type";
	var AB_EMAIL				= "Please enter Email address";
	
	var AB_GENDER				= "Please select gender";	
	var AB_ZIP					= "Please enter zip code";
	var AB_STATUS				= "Please select status of user";
	var AB_SELECTOPTION			= "Please select option";
	
	
	var AB_CATEGORYNAME			= "Please enter the category name";
	var AB_CATEGORYSELECT		= "Please select the category";
	var P_PRICE					= "Please enter product price";
	var P_VALIDPRICE			= "Please enter product price in valid numaric format";
	var P_VALIDPRICERANG		= "Product price should not be zero";
	
		
	var AB_COLORNAME			= "Please enter the color name";
	var AB_COLORSELECT			= "Please select the color";	
	var AO_COLORDELETE			= "Are you sure you want to delete this color";
	var AO_SELECTCOLOR			= "Please select atleast one color option";	
	
	var AB_SIZENAME				= "Please enter the size name";
	var AB_SIZESELECT			= "Please select the size";	
	var AO_SIZEDELETE			= "Are you sure you want to delete this size?";
	var AO_SELECTSIZE			= "Please select atleast one size option";	
	
	
	
	var PRODUCTDELETE							= "Are you sure you want to delete this product?";
	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 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 tif image";
	var AB_IMAGE				= "Please browse image";
	var AO_CATEGORYDELETE		= "Are you sure you want to delete this category?";

	var AB_PAGEURL				= "Please enter page URL";
	var AB_PAGETITLE			= "Please enter page title";
	var AB_METATITLE			= "Please enter meta title";
	var AO_PAGEDELETE			= "Are you sure you want to delete this page";	

	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				= "Please enter price numeric";	
	var AO_SHIPDELETE			= "Are you sure you want to delete this shipping module?";
	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 orders?";