<!--
	otherIds = new Array();
	otherIds[0] = "scoreTab";	otherIds[1] = "newsTab"; otherIds[2] = "otherTab";
	totalIds = 3;
	tabSelected = "";

	function showTab(id) {
		var compStyle = "";
		
		if (id && document.getElementById) {
      buttonClicked = document.getElementById(id);
      style = buttonClicked.style;			 
      
      style.borderLeft = "#00018A solid 1px";			 
      style.borderRight = "#00018A solid 1px";			 
      style.borderTop = "#00018A solid 1px";			 
      style.borderBottom = "0px";
			
			if ((navigator.appName=="Netscape") || (navigator.appName=="Opera")) {
				compStyle = getComputedStyle(document.getElementById('scores'),''); 
  			if (id == "scoreTab") style.backgroundColor = compStyle.getPropertyValue('backgroundColor');
				compStyle = getComputedStyle(document.getElementById('news'),''); 
  			if (id == "newsTab") style.backgroundColor = compStyle.getPropertyValue('backgroundColor');
				compStyle = getComputedStyle(document.getElementById('other'),''); 
  			if (id == "otherTab") style.backgroundColor = compStyle.getPropertyValue('backgroundColor');
			} else {
  			if (id == "scoreTab") style.backgroundColor = document.getElementById("scores").currentStyle.backgroundColor;
  			else if (id == "newsTab") style.backgroundColor = document.getElementById("news").currentStyle.backgroundColor;
  			else if (id == "otherTab") style.backgroundColor = document.getElementById("other").currentStyle.backgroundColor;
			}
			

			var i =0;
			for (i=0; i<totalIds; i++) {
        if (id != otherIds[i]) {
          style = document.getElementById(otherIds[i]).style;
					if (i != (totalIds - 1)) style.borderRight = "#00018A solid 1px"; 
          style.borderBottom = "#00018A solid 2px";
          style.borderLeft = "0px";         			 
          style.borderTop = "0px";
					if ((navigator.appName=="Netscape") || (navigator.appName=="Opera")) {
						compStyle = getComputedStyle(document.getElementById('restTab'),'');
						style.backgroundColor = compStyle.getPropertyValue('backgroundColor');			
					} else {
						style.backgroundColor = document.getElementById("restTab").currentStyle.backgroundColor;
					}			 
        } 
			}
			
			if (tabSelected == id) return;
			if (tabSelected == "scoreTab") deleteNews("scores");
			else if (tabSelected == "newsTab") deleteNews("news");
			else if (tabSelected == "otherTab") deleteNews("other");
			tabSelected = id;
			if (tabSelected == "scoreTab") addNews(11, "scores", "base");
			else if (tabSelected == "newsTab") addNews(9, "news", "base");
			else if (tabSelected == "otherTab") addNews(4, "other", "base");
			document.getElementById("scorePause").innerHTML = "||";
		}
	}
	
	function pausePressed(id) {
    if (tabSelected == "scoreTab") toggleScrollingNews('scores', id);
    else if (tabSelected == "newsTab") toggleScrollingNews('news', id);
    else if (tabSelected == "otherTab") toggleScrollingNews('other', id);
	}
	
	function nextPressed() {
    if (tabSelected == "scoreTab") nextNewsItem('scores');
    else if (tabSelected == "newsTab") nextNewsItem('news');
    else if (tabSelected == "otherTab") nextNewsItem('other');
	}
	
	function resizeNews() {
		if (document.getElementById) {
      if (tabSelected == "scoreTab") {
				deleteNews("scores");
				addNews(11, "scores", "base");
			} else if (tabSelected == "newsTab") {
				deleteNews("news");
				addNews(9, "news", "base");
			} else if (tabSelected == "otherTab") {
				deleteNews("scores");
				addNews(4, "other", "base");
			}
		}
	}
	
-->