var fDesc=new Array(); fDesc[0] = "This is an AIR (Adobe Integrated Runtime) application that helps you create and edit panoramas and virtual tours for the JC Panorama Viewer. The program develops four types of panoramas to choose from (plain, cylindrical, spherical and cubical) and each are created based on images specified by you. The panoramas also have support for hotspots and allow user interactivity."; 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 = ''; } }