var fDesc=new Array(); fDesc[0] = "By the Tarot reading, people may be able to find answers about their hopes and wishes. This program uses the 'Celtic cross' card reading. There are 3 different, full, and original decks of the 'Tarot of Marseilles', which is the oldest and most popular. These are the Dodal, Conver, and Noblet decks. There are 78 different cards, 22 major and 56 lesser 'arcana' cards. This program is provided for entertainment purposes only."; 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 = ''; } }