// Style sheet platform check

if ((navigator.userAgent.indexOf("Mac") != -1))
    document.write("<link rel='stylesheet' href='../stylesheets/master_m.css' type='text/css'>")
if (navigator.userAgent.indexOf('Win') != -1){
    if (navigator.appName.indexOf('Netscape') != -1) {
        document.write("<link rel='stylesheet' href='../stylesheets/master_n.css' type='text/css'>")
        }
   else {
        document.write("<link rel='stylesheet' href='../stylesheets/master.css' type='text/css'>")
        }
    }