var size = "x-small";
var netscape = (navigator.appName == 'Netscape');
if (netscape) {
   size = "small"; }
document.writeln('<style type="text/css"><!--');
document.writeln('body, td, th { font-size: ' + size + ' }');
if (netscape) {
   document.writeln('h1, h2, h3 { font-weight: normal }'); }
document.writeln('--></style>');
