// Pick up the appropriate style sheet for this browser


StyleName = 'default.css';

if (navigator.platform == "Win32")
{	
	switch (navigator.appName)
	{
		case 'Opera':
		{
			StyleName = 'pc-opera.css';
			break;
		}
		case 'Netscape':
		{
			StyleName = 'pc-netscape.css';
			break;
		}
	}
}

if (navigator.platform == "MacPPC")
{	
	switch (navigator.appName)
	{
		case 'Opera':
		{
			StyleName = 'mac-opera.css';
			break;
		}
		case 'Netscape':
		{
			StyleName = 'mac-netscape.css';
			break;
		}
	}
}

document.write("<LINK REL='STYLESHEET' HREF='http://www.headwater.com/styles/" + StyleName + "' TYPE='text/css'>");
document.write("<STYLE TYPE='text/css'></STYLE>");
