function RedirectToPromoBouchon()
{
	// Redirect on 26th of August 2006 (Month index starts at zero)
	var redirectDate = new Date();
	redirectDate.setFullYear(2006, 7, 26);
	redirectDate.setHours(0, 0, 0, 0);
	
	var now = new Date();
	if (now >= redirectDate)
	{
		window.location = "/Index_Bouchon.aspx";
	}
}
