<!--
			function ResizeScreen()
			{
				var size;
				size = screen.width;
				switch(true)
				{
				case (size < 801): 		// screen resolution of 800x600 or less wide - height could vary
					document.getElementById("sitebranding").style.width="759px";		// 800-41 21px vertical scroll bar and 10px margin each side
					document.getElementById("banner").style.width="755px";			// 759-4 2px each border
					document.getElementById("tagline").style.width="759px";
					document.getElementById("navigation").style.width="739px";		// 759-20 10px padding each side
					document.getElementById("home").style.marginLeft="5px";			// ((739-20)/6-109)/2
					document.getElementById("home").style.marginRight="5px";		// ((739-20)/6-109)/2
					document.getElementById("statistics").style.marginLeft="5px";		// ((739-20)/6-109)/2
					document.getElementById("statistics").style.marginRight="5px";		// ((739-20)/6-109)/2
					document.getElementById("league_stuff").style.marginLeft="5px";		// ((739-20)/6-109)/2
					document.getElementById("league_stuff").style.marginRight="5px";	// ((739-20)/6-109)/2
					document.getElementById("check_it_out").style.marginLeft="5px";		// ((739-20)/6-109)/2
					document.getElementById("check_it_out").style.marginRight="5px";	// ((739-20)/6-109)/2
					document.getElementById("cricket").style.marginLeft="5px";		// ((739-20)/6-109)/2
					document.getElementById("cricket").style.marginRight="5px";		// ((739-20)/6-109)/2
					document.getElementById("dennis").style.marginLeft="5px";		// ((739-20)/6-109)/2
					document.getElementById("dennis").style.marginRight="5px";		// ((739-20)/6-109)/2
					document.getElementById("bodycontent").style.width="729px";		// 759-30 15px padding each side
					break;
				case (size == 1024):		// screen resolution of 1024x768 - height could vary
					document.getElementById("sitebranding").style.width="983px";		// 1024-41 0px for padding
					document.getElementById("sitebranding").style.paddingLeft="0";		// padding to center the banner (1024-1024)/2
					document.getElementById("tagline").style.width="983px";			// 1024-41
					document.getElementById("navigation").style.width="973px";		// 983-10
					document.getElementById("navigation").style.paddingLeft="0";		// padding to center the navigation buttons (1024-1024)/2
					document.getElementById("bodycontent").style.width="953px";		// 983-30
					break;
				case (size == 1280):  		// screen resolution of 1280x800 - height could vary
					document.getElementById("sitebranding").style.width="1111px";		// 1280-41-128 128px for padding
					document.getElementById("sitebranding").style.paddingLeft="128px";	// padding to center the banner (1280-1024)/2
					document.getElementById("tagline").style.width="1239px";		// 1280-41
					document.getElementById("navigation").style.width="1101px";		// 1111-10
					document.getElementById("navigation").style.paddingLeft="128px";	// padding to center the navigation buttons (1280-1024)/2
					document.getElementById("bodycontent").style.width="1209px";		// 1239-30
					break;
				case (size == 1360):  		// screen resolution of 1360x768 - height could vary
					document.getElementById("sitebranding").style.width="1151px";		// 1360-41-168 168px for padding
					document.getElementById("sitebranding").style.paddingLeft="168px";	// padding to center the banner (1360-1024)/2
					document.getElementById("tagline").style.width="1319px";		// 1360-41
					document.getElementById("navigation").style.width="1141px";		// 1151-10
					document.getElementById("navigation").style.paddingLeft="168px";	// padding to center the navigation buttons (1360-1024)/2
					document.getElementById("bodycontent").style.width="1289px";		// 1319-30
					break;
				case (size == 1600):		// screen resolution of 1600x1200 - height could vary
					document.getElementById("sitebranding").style.width="1271px";		// 1600-41-288 288px for padding
					document.getElementById("sitebranding").style.paddingLeft="288px";	// padding to center the banner (1600-1024)/2
					document.getElementById("tagline").style.width="1559px";		// 1600-41
					document.getElementById("navigation").style.width="1261px";		// 1271-10
					document.getElementById("navigation").style.paddingLeft="288px";	// padding to center the banner (1600-1024)/2
					document.getElementById("bodycontent").style.width="1529px";		// 1559-30
					break;
				case (size == 1680):		// screen resolution of 1680x1050 - height could vary
					document.getElementById("sitebranding").style.width="1311px";		// 1680-41-328 328px for padding
					document.getElementById("sitebranding").style.paddingLeft="328px";	// padding to center the banner (1680-1024)/2
					document.getElementById("tagline").style.width="1639px";		// 1680-41
					document.getElementById("navigation").style.width="1301px";		// 1311-10
					document.getElementById("navigation").style.paddingLeft="328px";	// padding to center the banner (1680-1024)/2
					document.getElementById("bodycontent").style.width="1609px";		// 1639-30
					break;
				case (size > 1919):		// screen resolution of 1920x1080 or wider - height could vary
					document.getElementById("sitebranding").style.width="1431px";		// 1920-41-448 4428px for padding
					document.getElementById("sitebranding").style.paddingLeft="448px";	// padding to center the banner (1920-1024)/2
					document.getElementById("tagline").style.width="1879px";		// 1920-41
					document.getElementById("navigation").style.width="1421px";		// 1431-10
					document.getElementById("navigation").style.paddingLeft="448px";	// padding to center the banner (1920-1024)/2
					document.getElementById("bodycontent").style.width="1849px";		// 1879-30
					break;
				} // end of switch
			} // end of function load()
		//-->
