var fDesc=new Array();
fDesc[0] = "With Met Office Desktop Widget you can have the latest forecasts, warnings and observations on your desktop, what ever you are doing.
Main features:
- Up-to-date weather forecasts, warnings and observations from the Met Office
- Customize the content which is displayed
- Keep up to date with weather information while working on other tasks
- Easy-to-understand display
- Alert in the system tray when warnings are issued";
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 = '';
}
}