<!--
// this script loads the stylesheets for this application

document.write('<link rel="stylesheet" href="');
document.write(contextPath("/styles/nswrta.css") + '" type="text/css">');

//document.write('<link rel="stylesheet" href="');
//document.write(contextPath("/styles/lightweight.css") + '" type="text/css">');

document.write('<link rel="stylesheet" href="');
document.write(contextPath("/styles/app.css") + '" type="text/css">');

var platform = navigator.platform.toLowerCase();

if (platform.indexOf("mac")>=0)
    macVersion();
else
    pcVersion();

function pcVersion()
{
    document.write('<link rel="stylesheet" href="');
    document.write(contextPath("/styles/pc.css") + '" type="text/css">');
}

function macVersion()
{
    document.write('<link rel="stylesheet" href="');
    document.write(contextPath("/styles/mac.css") + '" type="text/css">');
}

// -->