bballon= new Image(103,48);
bballon.src="images/baseball_on.gif";  
bballoff= new Image(103,48);
bballoff.src="images/baseball_off.gif";
bballmessage= "Baseball";	

footballon= new Image(116,48);
footballon.src="images/football_on.gif";  
footballoff= new Image(116,48);
footballoff.src="images/football_off.gif";
footballmessage= "Football";

bball2on= new Image(111,48);
bball2on.src="images/basketball_on.gif";  
bball2off= new Image(111,48);
bball2off.src="images/basketball_off.gif";
bball2message= "Basketball";

hockeyon= new Image(100,48);
hockeyon.src="images/hockey_on.gif";  
hockeyoff= new Image(100,48);
hockeyoff.src="images/hockey_off.gif";
hockeymessage= "Hockey";

motorsportson= new Image(102,48);
motorsportson.src="images/motorsports_on.gif";  
motorsportsoff= new Image(102,48);
motorsportsoff.src="images/motorsports_off.gif";
motorsportsmessage= "Motorsports";

socceron= new Image(102,48);
socceron.src="images/soccer_on.gif";  
socceroff= new Image(102,48);
socceroff.src="images/soccer_off.gif";
soccermessage= "Soccer";

miscon= new Image(124,48);
miscon.src="images/misc_on.gif";  
miscoff= new Image(124,48);
miscoff.src="images/misc_off.gif";
miscmessage= "Misc Sports";


function activate(imgName)
{
if (document.images)
	{
	imgOn=eval(imgName + "on.src");
	document[imgName].src= imgOn;
	imgMess=eval(imgName + "message");
	window.status=imgMess;
	}
}

function deactivate(imgName)
{
if (document.images)
	{
	imgOff=eval(imgName + "off.src");
	document[imgName].src= imgOff;
	window.status="";
	}
}

function showMore(entryID, entryLink, htmlObj)
{
extTextDivID = ('extText' + (entryID));
extLinkDivID = ('extLink' + (entryID));
if (document.getElementById)
	{
	if (document.getElementById(extTextDivID).style.display)
		{
		if (entryLink != 0)
			{
	        document.getElementById(extTextDivID).style.display = "block";
	        document.getElementById(extLinkDivID).style.display = "none";
	        htmlObj.blur();
			}
		else
			{ 
	        document.getElementById(extTextDivID).style.display = "none";
	        document.getElementById(extLinkDivID).style.display = "block";
			}
		}
	}
}
