var fDesc=new Array();
fDesc[0] = "WHFC is a client for the network fax server HylaFAX 4.0 - 4.3 under Windows 95/98, Windows NT/2000/XP (reported to work also under Windows Vista and XP). WHFC will not run on any 64 bit platform.
Features:
As many phonebooks as you like and ODBC support for the phonebooks (now including views support)
Sending postscript files and sending a fax via a fax printer
Supports sending to multiple fax addresses
E-Mail notification on success and failure
Removing faxes from the queue
Dynamically update of the sendqueue status window
Good configurable (per user)
Own Faxqueue for using WHFC off-line
Usable via OLE for macro processing
Changing job-parameters for queued faxes
Configurable Dial String/Separator for the Phonebooks
Time zone selection
Windows Setup program
National language support including a possibility to generate your own language module, customize the dialogs etc.
Fax viewer solution with an external viewer program.
Sourcecode available under GPL.";
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 = '';
}
}