var fDesc=new Array();
fDesc[0] = "Roulette Royale is a very special featured game that is part of the suite of gaming offerings developed and designed by Microgaming, which is perhaps the most well-known and well-respected name in the world of casino software.
The game is just like any other game of roulette, with a few exceptions. It is modeled on the standard European roulette game, in which only one zero (as opposed to the American version with both a zero and double zero) appears on the wheel, and on the layout.";
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 = '';
}
}