var fDesc=new Array();
fDesc[0] = "Tournament Planner presents innovative use of information technology going far beyond advanced tournament management - to provide you with state of the art, unique combinations of highly innovative, practical, and professional capabilities.
It provides you with the most powerful, user-friendly, and easy-to-use software tools for tournament organizers - Tournament Planner saves tremendous amounts of time, ensures extreme accuracy and makes the availability of results immediate.
Using clear, easy-to-perform steps, Tournament Planner helps you to easily master your tournament. Designed for exceptional clarity, Tournament Planner simplifies these operations, using step-oriented windows and menus in conjunction with advanced navigational features and intelligent screens and controls.";
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 = '';
}
}