var fDesc=new Array();
fDesc[0] = "MirrorFolder is a continuous backup software for automatic archiving and synchronization of files on local, network, and cloud storage locations.
Key features:
* Easy to setup, and runs automatically as a service in the background using minimum system resources.
* Supports synchronization and archiving of a folder or drive to multiple destinations each with different options.
* Supports synchronization and archiving of folders on fixed local drives, removable USB drives, and local network drives accessible through any supported protocols, e.g., SMB, CIFS, NFS, WebDAV, etc.
* Supports FTP, SFTP, and WebDAV as storage locations for synchronization, archiving, restoration, and comparison operations.
* Supports ADrive, Amazon S3, Backblaze B2, Dropbox, Google Drive, and OneDrive personal and business cloud storages for all operations.
* It can mirror open and locked files, including Outlook PST file, using Windows Volume Shadow Copy Service APIs.
* Built-in scheduler for automatic synchronization and archiving of folders at specified time interval, or at specified times of the day.
* Supports automatic synchronization of folders on system startup, shutdown, login, log-off, screen lock, screen unlock, or when a removable or network drive is connected
* Supports real-time synchronization of folders and files
* Supports bi-directional synchronization with replication of file delete operation.
* Option to use NTFS Change Journals data for fast synchronization of drive or folders containing very large number of files.
* Supports exclusion/inclusion of sub-folders and file types from mirroring.
* Supports execution of an external command before and after synchronization or archiving.
MirrorFolder Cloud Edition cost US $59.00 for a single computer license. Discount is available for purchasing two or more licenses. A fully functional 30 days trial version is also available for download from the web site.";
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 = '';
}
}