<!-- Hide code.
/*
	Name:		StyleSheetCommon.js
	Purpose:	Set the correct style sheets for the browser being used.
	Date:		09/11/2000
*/
if(navigator.appName.indexOf("WebTV") != -1)
{
	// Styles are already included in the header since WebTV seems to have trouble putting them here
}
else if (navigator.appVersion.indexOf('Mac')!=-1)
{ 
	if(navigator.appVersion.indexOf('MSIE') > 0)
	{ 
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssHeaderMac.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssLeftNavMac.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssMainBodyMac.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssRightNavMac.css'>")
		document.write("<link rel = 'stylesheet' type='text/css' href='../../CommonCobrand/cssCobrandMac.css'>")
	}
	else
	{
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssHeaderMacNet.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssLeftNavMacNet.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssMainBodyMacNet.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssRightNavMacNet.css'>")
		document.write("<link rel = 'stylesheet' type='text/css' href='../../CommonCobrand/cssCobrandMacNet.css'>")
	}
}
else 
{
	if (navigator.appName.indexOf('Netscape')!=-1)
	{
	 	document.write("<link rel = 'stylesheet' type='text/css' href='../../cssHeaderNet.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssLeftNavNet.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssMainBodyNet.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssRightNavNet.css'>")
		document.write("<link rel = 'stylesheet' type='text/css' href='../../CommonCobrand/cssCobrandNet.css'>")
	 }
	 else
	{ 
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssHeader.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssLeftNav.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssMainBody.css'>");
		document.write("<link rel = 'stylesheet' type='text/css' href='../../cssRightNav.css'>")
		document.write("<link rel = 'stylesheet' type='text/css' href='../../CommonCobrand/cssCobrand.css'>")
	}
}
// Stop Hiding Code. -->