var fDesc=new Array(); fDesc[0] = "It's one of the most fascinating views one can imagine. Depths of ocean have always attracted people. They hide some mystery. Slow waving of water-plants, measured movements of fish and other creatures make ocean an embodiment of calm and quiet. Ocean is a secret itself. It's amazing and wonderful. A tiny part of this world is precious if not priceless. It seems to be unbelievable that a man can own a peace of ocean. However, there's nothing complicated about it. You can own a part of ocean... on your computer screen!"; 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 = ''; } }