/**********************************************************************
BROWSERCOMPATDEFAULT.JS : Works in tandem with browsercompat.js  will
redirect user based on browsercompat.js needed because of entrypoint.asp.
**********************************************************************/
	
	//Create a new browsercompatcheck object from browsercompat.js
	var fnBCC = new browserCompatCheck();
	//Route the browser to the correct logon page depending upon
	//Preset criteria.
	if (fnBCC.compat)
	{
		if (fnBCC.simple && !fnBCC.warn)
		{
		window.location.href ="gndefault.asp?healthplan=" + Healthplan;
		}
		else if (fnBCC.simple && fnBCC.warn)
		{
		window.location.href ="/common/browwarning.asp?next=gndefault.asp&healthplan=" + Healthplan;
		}
		else if (!fnBCC.simple && fnBCC.warn)
		{
		window.location.href ="/common/browwarning.asp?next=authent.asp&healthplan=" + Healthplan;
		}
		else
		{
		window.location.href ="authent.asp?healthplan=" + Healthplan;
		}
	}
	else if(!fnBCC.compat)
	{
	window.location.href ="/common/brownotcompat.asp";
	} 


