var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

document.writeln("<STYLE TYPE='text/css'><!--");

if(navigator.appVersion.indexOf("Mac") > -1)
{
 if( bName == "M")
  {
    // MAC IE
    document.writeln(".j9{font-Size:xx-small;}");
    document.writeln(".j10{font-Size:x-small; line-height:140%;}");
    document.writeln(".j11{font-Size:small; line-height:130%;}");
    document.writeln(".j12{font-Size:small; line-height:120%;}");
 } 
 else
 {
    if( vNum < 5 )
    {
        // MAC NETSCAPE 4.x
    document.writeln(".j9{font-Size:xx-small;}");
    document.writeln(".j10{font-Size:x-small; line-height:140%;}");
    document.writeln(".j11{font-Size:small; line-height:130%;}");
    document.writeln(".j12{font-Size:small; line-height:120%;}");
    } 
    else
    {
        // MAC NETSCAPE 6.x
    document.writeln(".j9{font-Size:xx-small;}");
    document.writeln(".j10{font-Size:x-small; line-height:140%;}");
    document.writeln(".j11{font-Size:small; line-height:130%;}");
    document.writeln(".j12{font-Size:small; line-height:120%;}");
    }
 }
}
else
{
 if( bName == "M")
  {
    if( vNum < 6 )
    {
        // WIN IE 5.x
    document.writeln(".j9{font-Size:xx-small;}");
    document.writeln(".j10{font-Size:xx-small; line-height:140%;}");
    document.writeln(".j11{font-Size:x-small; line-height:130%;}");
    document.writeln(".j12{font-Size:x-small; line-height:120%;}");
    } 
    else
    {
        // WIN IE 6.x
    document.writeln(".j9{font-Size:xx-small;}");
    document.writeln(".j10{font-Size:x-small; line-height:140%;}");
    document.writeln(".j11{font-Size:small; line-height:130%;}");
    document.writeln(".j12{font-Size:small; line-height:120%;}");
    }
 } 

 else
 {
    if( vNum < 5 )
    {
        // WIN NETSCAPE 4.x
    document.writeln(".j9{font-Size:xx-small;}");
    document.writeln(".j10{font-Size:x-small; line-height:140%;}");
    document.writeln(".j11{font-Size:small; line-height:130%;}");
    document.writeln(".j12{font-Size:small; line-height:120%;}");
    } 
    else
    {
        // WIN NETSCAPE 6.x
    document.writeln(".j9{font-Size:xx-small;}");
    document.writeln(".j10{font-Size:x-small; line-height:140%;}");
    document.writeln(".j11{font-Size:small; line-height:130%;}");
    document.writeln(".j12{font-Size:small; line-height:120%;}");
    }
 }
}
document.writeln("--></STYLE>");

