var isNN = (navigator.appName.indexOf("Netscape") != -1);
var fontSize;
if (isNN)
   fontSize = "9pt";
else
   fontSize="8pt";
document.write ("<STYLE TYPE='text/css'>");
document.write ("	   td {font-family: verdana; font-size:" + fontSize + "}")
document.write ("      body {font-family: verdana; font-size: " + fontSize + "}");
document.write ("      input, textarea, {font-family: verdana; font-size: " + fontSize + "}");
document.write ("</STYLE>");

