var fDesc=new Array();
fDesc[0] = "Fuel Outlook is a software application you install on your computer that predicts fuel prices based on multiple factors, calculations, and data. Fuel Outlook requires you to enter a Local Price or Cost for a fuel product and uses this in its Local Price factor calculations.
Fuel price prediction calculations are performed hundreds of times throughout the day and are downloaded by Fuel Outlook when it is running. The predictions are displayed in real time on the Home Tab in a nice dashboard view. History data, graphs, news feeds, blogs, area fuel prices, and alerts are all additional parts of Fuel Outlook.";
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 = '';
}
}