var fDesc=new Array(); fDesc[0] = "YoWindow is a weather application that manages to deliver weather data.YoWindow takes the current weather from METAR stations network. There are around 4380 active METAR stations scattered around the world. Most of them are located in airports. YoWindow picks the closest METAR station to the location you choose. Then the current weather is loaded from this station."; 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 = ''; } }