

// Fix Netscape styles
//
// Adjusts stylesheet for Netscape on the PC (which tends to do small text unreadably small)
// Place this script into the BODY of each page that needs fixing. Probably right at the top
// of the page.
//
// This script requires that we have included the find_browser_type.js script to determine 
// the browser type first. Put find_browser_type.js into the HEAD of the page.

	
	if (fbtBrowserPlatform == "windows" && fbtBrowserType == "navigator")
	{
	
	// Override the "bodysmaller" class, defined in league_styles.css
	// by generating an additional internal stylesheet.
	
	document.writeln ('<STYLE type="text/css">');
	document.writeln ('<!--');
	document.writeln ('.bodysmaller {font-size: 10px}');
	document.writeln ('.bodybigger {font-size: 12px}');
	document.writeln ('.myheading {font-size: 14px}');

	document.writeln ('p {font-size: 11px}');
	document.writeln ('td {font-size: 11px}');
	document.writeln ('ul {font-size: 11px}');
	document.writeln ('h2 {font-size: 16px}');
	document.writeln ('h3 {font-size: 14px}');
	document.writeln ('h4 {font-size: 11px}');



	document.writeln ('-->');
	document.writeln ('</STYLE>');


	}


	

	

	
	
	
	
	
	





			