var fDesc=new Array();
fDesc[0] = "WinBid is a full bidding suite of software. It includes three main programs.
WinBid
WinBid is a full bidding program for:
- Daily bidding
- Monthly bidding
- Bid package printing
BidCom
BidCom is an automatted communications program for access and saving CATCREW information.
Little Red Book
Little Red Book is a full logbook program that automatically retrieves data from CATCREW.
All you need is:
- An Internet connection (broadband preferred)
- Flightline CATCREW account
- Windows XP, Vista, or Windows 7
Pricing for WinBid 7
- New users: $99
- Users of previous users of WinBid: $55";
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 = '';
}
}