var fDesc=new Array();
fDesc[0] = "DBS2K has a lot of handy keyboard shortcuts which can help save you time.
The following is a list of the shortcuts and their function:
Key Function
F - Takes you to the football odds screen.
B - Takes you to the baseball odds screen.
K - Takes you to the basketball odds screen.
H - Takes you to the hockey odds screen.
A - Takes you to the auto racing odds screen.
S - Takes you to the soccer odds screen.
G -Takes you to the golf odds screen.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}