var fDesc=new Array();
fDesc[0] = "Romantic Dares is an exciting and unpredictable fast moving game of touching, massage, intimacy and unpredictable passion. The game uses a unique and exciting method of generating limitless interactions for your enoyment.
Each player turns over a card in turn. The card may instruct them to massage, kiss, touch, etc a specific part (or parts) of their partner's body. The player can accept or refuse the card's instructions. A reward is awarded to each player when they have accepted 5 cards in a row.";
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 = '';
}
}