var fDesc=new Array(); fDesc[0] = "Snow has settled on the ground as a smooth cover. The sky seems to be closer. The nature around goes into a deep sleep but a small light of hope starts burning and it tells us that the world around will become better soon. Christmas is a wonderful time, when people's hearts are filling up with expectation of a miracle?And this miracle comes!"; 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 = ''; } }