// Determines platform for user ***********
// Determine whether PC user or MAC user 
// Generate appropriate style sheet. 

function GetBr() {
	var agt = navigator.userAgent.toLowerCase();

	var isMac = (agt.indexOf("mac") != -1);
	
	if (isMac)	{
		platformStyleSheet='mac1';
	} else {
		platformStyleSheet='style';
	}
	
	return platformStyleSheet;
}
// -----------------------
// DESCRIPTION: dynamically creates the link to the stylesheet based on browser and platform
// ARGUMENTS: --
// RETURN: --
// -----------------------

function WriteValues() {
	GetBr();
	style = "../includes/" + platformStyleSheet + ".css";
	document.write('<link rel="stylesheet" href="' + style + '" type="text/css" />');
}
WriteValues();