<!--
var detect = navigator.userAgent.toLowerCase();
var is_os_mac = detect.indexOf('mac');
var is_os_linux = detect.indexOf('linux');
var is_os_unix = detect.indexOf('unix');
var is_b_gecko = detect.indexOf('gecko');
var is_b_ie = detect.indexOf('msie');
if (is_os_mac == -1 && is_os_linux == -1 && is_os_unix == -1 && is_b_gecko == -1 && is_b_ie == -1)
{
	document.write('<link rel="stylesheet" type="text/css" href="styles/ns4x.css">');
}
else
{
	document.write('<link rel="stylesheet" type="text/css" href="styles/default.css">');
}
//-->