<!--
// This Script writes the html link tag that calls a platform specific stylesheet.
// Detect if user has Mac
if ( navigator.platform == "MacPPC" )
{
	//Detect if user has Netscape
	if ( navigator.appName == "Netscape") 
	{	
		document.write("<LINK REL=stylesheet HREF=css/stylewinie.css TYPE=text/css>"); 
	}
	// Detect if user has IE
	else 
	{
		// Write the link tag that calls the IE Mac stylesheet
		document.write("<LINK REL=stylesheet HREF=css/stylewinie.css TYPE=text/css>"); 
	}
} 
// if not Mac
else
{
	//Detect if user has Netscape
	if ( navigator.appName == "Netscape") 
	{
		// Write the link tag that calls the Netscape Windows stylesheet
		document.write("<LINK REL=stylesheet HREF=css/stylewinie.css TYPE=text/css>"); 
	}
	// Write the link tag that calls the IE Windows stylesheet
	else
	{
		document.write("<LINK REL=stylesheet HREF=css/stylewinie.css TYPE=text/css>"); 
	}
}

//-->