var fDesc=new Array(); fDesc[0] = "Do you remember how Cinderella turned into a Princess? This program allows you to achieve the same kind of transformation for yourself, without spending a fortune on expensive make-up, designer eyeglasses, or visits to a hairstylist or make-up artist - and without a Fairy Godmother! The powerful set of tools included helps you to attain the most incredible results."; 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 = ''; } }