var fDesc=new Array(); fDesc[0] = "Picture Navigator is created to help you easily record and review your trip knowing exactly where you have traveled. Furthermore if you took digital photos on your trip, it would even show you the exact location where and when your pictures were taken. The most exciting feature of all is that you can upload your photos to online photo sharing website like flicker. It is a good way to share you trip experience with friends and families."; 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 = ''; } }