var fDesc=new Array();
fDesc[0] = "PM Downloader is the interactive multithreaded network retriever for OS/2 & eCS Presentation Manager supporting HTTP, HTTPS and FTP protocols for downloading files.
Features:
- Handy GUI interface for managing your downloads
- HTTP/HTTPS/FTP downloading with full resume capability
- HTTP/FTP/SOCKS proxy management
- Control from external applications through named pipe
- Adding downloads using drag and drop
- Clipboard monitoring
- Traffic limitation
- Downloads history log
- User selectable sounds for events
- Supports downloading of files larger than 2 GB.
- Flexible and configurable
- Small in size";
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 = '';
}
}