var fDesc=new Array();
fDesc[0] = "Preposter automates drawing tournament grids and score tables. Simply download the poster created by the administrator on the threshold of the tournament and use Preposter to carry on the event: along the course of the tournament, as the scores become available, just enter them in the corresponding fields. The program will automatically transfer the qualified teams to the next lap and properly display the winners.
Main Features:
- Carry on tournaments on your own and watch how the teams rearrange as new information becomes available.
- Pinpoint winner properly.
- Save striking posters on your local computer or share them with other fans through your website, blog or homepage.";
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 = '';
}
}