 		  function showText(ball)
		{
		 //alert(ball.id);
		  myTitle = document.getElementById('msgTitle');
		  var strTitle='Hi There!';
		  if (ball.id=='1b')
		  {
		    strTitle = 'New Crown Music';
		  }else if (ball.id=='2b')
		  {
		    strTitle = 'Different Levels of Skill';
		  }else if (ball.id=='3b')
		  {
		    strTitle = 'New Players';
		  }else if (ball.id=='4b')
		  {
		    strTitle = 'Team Standings';
		  }else if (ball.id=='5b')
		  {
		    strTitle = 'Check Out the VNEA';
		  }else if (ball.id=='6b')
		  {
		    strTitle = 'Who did what this week';
		  }else if (ball.id=='7b')
		  {
		    strTitle = 'Sales and Service';
		  }else if (ball.id=='8b')
		  {
		    strTitle = 'Tournaments In and Around Ontario';
		  }else if (ball.id=='9b')
		  {
		    strTitle = 'Vegas Or Bust!';
		  }else if (ball.id=='10b')
		  {
		    strTitle = 'Locations';
		  }else if (ball.id=='11b')
		  {
		    strTitle = 'Schedules';
		  }else if (ball.id=='12b')
		  {
		    strTitle = 'Special Event';
		  }else if (ball.id=='13b')
		  {
		    strTitle = 'Who plays in this league?';
		  }else if (ball.id=='14b')
		  {
		    strTitle = 'TBD';
		  }else if (ball.id=='15b')
		  {
		    strTitle = 'TBD';
		  }
		  
		  myTitle.innerHTML = strTitle;
		  myTitle.style.display='block';
          myTitle.style.color='gold';
          myTitle.style.fontSize='16pt';
                  
		}

		  
		  function hideText()
		  {
		    myTitle = document.getElementById('msgTitle');
		    myTitle.style.display='none';
		  }

                // new prototype defintion
                document.include = function (url) {
                //alert('here');
                if ('undefined' == typeof(url)) return false;
                  var p,rnd;
                  if (document.all){
                    // For IE, create an ActiveX Object instance 
                    p = new ActiveXObject("Microsoft.XMLHTTP");
                  } 
                  else {
                    // For mozilla, create an instance of XMLHttpRequest.
                    p = new XMLHttpRequest();
                  }
                 // Prevent browsers from caching the included page
                 // by appending a random  number
                 rnd = Math.random().toString().substring(2);
                 url = url.indexOf('?')>-1 ? url+'&rnd='+rnd : url+'?rnd='+rnd;
                 // Open the url and write out the response
               p.open("GET",url,false);
               p.send(null);
               //alert(p.responseText);
               document.write( p.responseText );
               }
