var fDesc=new Array(); fDesc[0] = "AeroWeather is a program that provides you the weather conditions for your current location or any other city from allover the world. It features a configurable weather check frequency, supporting 3 minute intervals between 3 and 60 minutes and a temperature range from -50 to 150 degrees (F or C). You can add, remove, and customize the temperature color spectrum, see a preview of the temperatures that apply to that color in real time and much more."; 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 = ''; } }