var fDesc=new Array();
fDesc[0] = "BidPro is the finest bidding program available for United Parcel Service crewmembers -- no other bidding program has as much to offer as BidPro. It is faster, filled with more features, more flexible and easier to use than any other stand-alone or web-based bidding program.
BidPro is the program of choice for airline crewmembers across America. More people at more airlines use BidPro than any other program available! Put the power of BidPro to work for you as well!";
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 = '';
}
}