 
  
// Default Status Bar Message
defaultStatus='USC Mock Trial Online';

// this gives absolute font sizing on both pc and mac
if ((navigator.appVersion.indexOf("Mac") != -1))
        {
        document.write('<STYLE TYPE=\"text/css\">');
        document.write('.subheader	{ font-size: 11pt; font-family: Arial, Helvetica; font-weight: bold; text-decoration: none; color: #4a4a4a }');
        document.write('</STYLE>');
        }
else
        {
        document.write('<STYLE TYPE=\"text/css\">');
        document.write('.subheader	{ font-size: 10pt; font-family: Arial, Helvetica; font-weight: bold; text-decoration: none; color: #4a4a4a }');
        document.write('</STYLE>');
        }
				
