var fDesc=new Array(); fDesc[0] = "Learn the locations of all the countries of the world with this 3-D interactive program. Zoom-in and find the country or place you are looking for. Use as a reference to locate countries whose location you are curious about. The program also tests by asking you to locate countries yourself. See if you can find them !"; 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 = ''; } }