//test for browser type...not IE...not viewing this stuff correctly

                //global declaration

                var url = "default.htm"
	function showText(ball)
		{
		// alert(ball.name);
		  myMSG = document.getElementById('msg');
		  myTitle = document.getElementById('title');
		  var strMSG='Hi!'; //default message
		  var strFiller=' blah, blah, blah, blah, blah, blah, blah, blah and yakketyyakdonttalkback.';
		  var strTitle='Hi There!';
		  if (ball.name=='1b')
		  {
		    strMSG = 'Everything you ever wanted to know about New Crown Music';
		    strTitle = 'New Crown Music';
		  }else if (ball.name=='2b')
		  {
		    strMSG = 'If you are already an existing player, this is where you will find your Tournament Ranking System (TRS) score. We invite players to review the TRS and we also welcome your view on players’ rankings that are listed on the TRS player list.';
		    strTitle = 'Different Levels of Skill';
		  }else if (ball.name=='3b')
		  {
		    strMSG = 'How to contact us for information or to join a pool league: (705) 675-3656 (leave a message) or by e-mail at ncm8@bellnet.ca';
		    strTitle = 'New Players';
		  }else if (ball.name=='4b')
		  {
		    strMSG = 'Where does my team stand after this week?';
		    strTitle = 'Team Standings';
		  }else if (ball.name=='5b')
		  {
		    strMSG = 'Check out what the VNEA and other linked associations are all about';
		    strTitle = 'Check Out the VNEA';
		  }else if (ball.name=='6b')
		  {
		    strMSG = 'A regular night out…pool style.';
		    strTitle = 'Who did what this week';
		  }else if (ball.name=='7b')
		  {
		    strMSG = 'Links to the Predator Website, Valley Table, etc.';
		    strTitle = 'Sales and Service';
		  }else if (ball.name=='8b')
		  {
		    strMSG = 'What’s coming up?';
		    strTitle = 'Tournaments In and Around Ontario';
		  }else if (ball.name=='9b')
		  {
		    strMSG = 'So you want to know what’s going on elsewhere in the world?';
		    strTitle = 'International Events';
		  }else if (ball.name=='10b')
		  {
		    strMSG = 'This is where our pool players hang out during the league nights.';
		    strTitle = 'Locations';
		  }else if (ball.name=='11b')
		  {
		    strMSG = 'The dog ate my schedule…where do I play tonight?';
		    strTitle = 'Schedules';
		  }else if (ball.name=='12b')
		  {

		    strMSG = 'Check out the good, the bad and the ugly!';
                    strTitle = 'Special Moments with Friends we made through the league';
		  
		  }else if (ball.name=='13b')
		  {
		    strMSG = 'Make contact with pool players who are also run various businesses in and around Sudbury';
                    strTitle = 'Pool players with other Special Talents ';
		  
		  }else if (ball.name=='14b')
		  {
		    strMSG = 'Foosball anyone?  Join the Sudbury charter of the Valley International Foosball Association.';
                    strTitle = 'VIFA';
		  
		  }else if (ball.name=='15b')
		  {
		    strMSG = 'To be determined.';
		    strTitle = 'TBD';
		  }
		  
		  
		  
		  myMSG.innerHTML = "<BR><BR><BR>" + strMSG;
		  myMSG.style.display='block';
                  myMSG.style.color='white';
                  myMSG.style.fontWeight='bold';
		  myTitle.innerHTML = strTitle;
		  myTitle.style.display='block';
                  myTitle.style.color='gold';
                  myTitle.style.fontSize='24pt';
                  
		}
		function hideText()
		{
		  myMSG = document.getElementById('msg');
		  myMSG.style.display='none';
		  myTitle = document.getElementById('title');
		  myTitle.style.display='none';
		}

