var fDesc=new Array();
fDesc[0] = "Got a scanner and a modem? Save yourself the cost of a fax machine. Send and receive your faxes with Fax Machine. Here is how it works: insert a document in your scanner, start Fax Machine, click Scan page (several times if you want to send a multi-page fax), click Send Fax, fill in the recipient telephone number and off it goes. That's all!
Fax Machine contains a printer driver, which lets you "print" to Fax Machine from any Windows application that supports printing.
Features:
- Distinctive Ring support
- Can forward received faxes by e-mail, even automatically right after the fax is received
- Can print received faxes automatically right after the fax is received
- Can print log of sent and received faxes, or save these logs to a text file
- Can be set to start when Windows starts
- You can specify what printer to use to print send confirmations and received faxes.
- Contains a junk fax filter, to set apart faxes received from known junk senders.
- Is available in English, Dutch, French, German, Italian and Spanish. Choose your language when installing the application.";
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 = '';
}
}