var fDesc=new Array();
fDesc[0] = "URS (Ultimate Roulette System ) is a single Dozen bet roulette betting gambling strategy software system.
The program uses a single dozen bet strategy, incorporates a stake management subsystem, allows stakes from 0.10 currency units upwards, tracks and allows downloading of your betting history, uses a variable stake list progression that you control, offers you the chance of setting your own stake multiplier and can return your investment in less than an hour of use.";
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 = '';
}
}