function getContent(url)
{
                var response = null;
                var connection; 

                if(navigator.appName == "Microsoft Internet Explorer")
                                connection = new ActiveXObject("Microsoft.XMLHTTP");
                else
                                connection = new XMLHttpRequest();

                try 
                { 
                                connection.open("GET", url, false); 
                                connection.send(); 

                                if(connection.readyState == 4)
                                                response = connection.responseText; 
                } 
                catch(e) 
                { 
                                return false; 
                } 

                document.getElementById("currentInfo").innerHTML = response;
                return false; 
}



function writeCopyright()
{
//Edit Copyright content between the "" marks below
	document.write("<h3>Copyright &copy 2002-2010 Jr. Cougar Basketball.  All Rights Reserved.<br>Website Designed and Hosted by <a href=\"http://www.stratosfour.com\" target=_blank><font size=\"-1\">StratosFour, Inc.</font></a></h3>");
}