//Delete cookie script for price changes  Edit the line below with the mmyyyy version of the price change month
//===========================================================================================================
//Line below for testing
//===========================================
//DeleteCookie("PriceChange");

expires = new Date();
expires.setTime(expires.getTime() + Math.round(86400000*30)); // 30 Day Life for the cookie

PCDate = GetCookie("PriceChange")

//===================================================================================||
//Modify This Number to compare the customer's cart and reset them for the new prices||
//===================================================================================||

if (PCDate != 92011) {
	DeleteCookie("NumberOrdered","/");
	DeleteCookie("ZoneSelected","/");
	DeleteCookie("Order.1","/");
	DeleteCookie("Order.2","/");
	DeleteCookie("Order.3","/");
	DeleteCookie("Order.4","/");
	DeleteCookie("Order.5","/");
	DeleteCookie("Order.6","/");
	DeleteCookie("Order.7","/");
	DeleteCookie("Order.8","/");
	DeleteCookie("Order.9","/");
	DeleteCookie("Order.10","/");
	DeleteCookie("Order.11","/");
	DeleteCookie("Order.12","/");
	DeleteCookie("Order.13","/");
	DeleteCookie("Order.14","/");
	DeleteCookie("Order.15","/");
//=================================================================================||
//Modify This Number to set the current pricing and reset them for the new prices  ||
//=================================================================================||
 	PCDate = 92011   	// the value for the new cookie mmyyyy	

} 
// set the new cookie value
SetCookie("PriceChange", PCDate, expires);
//=====================================================================|| 
// END Price Change Adjustment Script                                  || 
//=====================================================================||
