function getBrowserType()
{
	if (window.navigator.userAgent.indexOf("AOL") != -1)
	{
		return "aol";
	}
	else if (window.navigator.appName == "Microsoft Internet Explorer")
	{
		return "ie";
	}
	else
	{
		return "other";
	}
}

function chooseCss()
{
	if (getBrowserType() == "ie")
	{
		window.document.write("<link href='styles/ie.css' rel='stylesheet' type='text/css'>");
	}
	else if (getBrowserType() == "aol")
	{
		window.document.write("<link href='styles/aol.css' rel='stylesheet' type='text/css'>");
	}
	else
	{
		window.document.write("<link href='styles/otherBrowsers.css' rel='stylesheet' type='text/css'>");
	}
}

