var fDesc=new Array();
fDesc[0] = "This custom written standalone desktop application allows you to view the latest, constantly updated scores from ih-update without the need to have a web browser window open and constantly refreshing.
MAin features:
-View scores without a web browser
-Fully configurable behaviour
-Minimise scoreboard to the notification area (beside the clock) so you can continue working
-Balloon pop-ups can notify you when scores change
-Direct links to game details on ih-update website
-Full help file included";
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 = '';
}
}