
var fromTxt = window.location.search.substring(1);
if (fromTxt != null)
{	
	if (fromTxt == "consumers")
	{
		Set_Cookie("consumers");		
	}
	if (fromTxt == "dealers")
	{
		Set_Cookie("dealers");		
	}
	if (fromTxt != "redirect=false")
	{					
		Get_Cookie();
	}
}	
else
{	
	Get_Cookie();
}

function Get_Cookie()		
{	
	var nameEQ = "EcommerceDefaultPage=";
	var ca = document.cookie.split(';');	
	for(var i=0; i < ca.length; i++)
	{		
		var spot1 = ca[i].indexOf(nameEQ);
		if (spot1 > -1)
		{
			var c = ca[i];						
			var spot = c.indexOf("=");
			var cht = c.substring(0, spot);		
			if (cht = nameEQ)
			{								
				var chta = c.substring(spot + 1, c.length);
				window.location = chta;
				break;	
			}
		}						
	}
}
function Set_Cookie(path)
{	
	path = path + "/default.asp";				
	document.cookie = "EcommerceDefaultPage=" + path + "; expires=Thu, 31-Dec-2020 00:00:00 GMT";	
}


