
// If the platform is Macintosh, use the Macintosh style sheet.

if (navigator.platform.indexOf('Mac') != -1) {
	document.write('<link rel="stylesheet" href="css/macstyle.css">');
// Otherwise, use the Windows style sheet.
} 
else	{
	var isIE = document.all?true:false;
	var isNS = document.all?false:true;

	if (isIE) document.write('<link rel="stylesheet" href="css/winiestyle.css" type="text/css">');
	else if (isNS) document.write('<link rel="stylesheet" href="css/winnsstyle.css" type="text/css">');
	else document.write('<link rel="stylesheet" href="css/windefaultstyle.css" type="text/css">');
}
