var fDesc=new Array(); fDesc[0] = "We invite you to stroll along the lake. In this lovely place, you can relax and regain strength. This lake is located in a picturesque location near the mountains. These mountains are clearly visible from the lake. Also here there is a boat station. You arrive and will ride on the boat as much as you want. And it's all absolutely free. Fresh air and crystal clear water instantly lift your mood."; 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 = ''; } }