// css detection beginning
// This js snippet detects the browser to call the appropriate css


if ((navigator.appVersion.indexOf("Mac") != -1)) {
     document.write("<LINK REL=stylesheet HREF=\"../css/globalmac.css\" TYPE=\"text/css\">"); }
     else {
     document.write("<LINK REL=stylesheet HREF=\"../css/globalwin.css\" TYPE=\"text/css\">"); }


// css detection ending

