var fDesc=new Array();
fDesc[0] = "TotalMounter is a free application that enables you to mount virtual CD/DVD burner that is allowing to directly burn data onto an ISO file, not to an optical disk.
Main features:
- Provides CD-RW and DVD RW emulators that allow you to "write" data into an CD/DVD drive, you may also create ISO9660 files by using any CD/DVD burning software.
- Provides a CD/DVD-ROM emulator that mounts image files such as ISO, CDI, BIN, MDS, MDF, IMG, RAW, CCD, NRG in to a virtual CD/DVD-ROM drive.
- Provides a iSCSI Initiator for mounting iStorage Server and other iSCSI Targets.
- Provides a INetDisk client for mount INetDisk Server.
- Mounts and create Image file disk's (img) and VHD files.
- AES 256-BIT virtual disk encryption.
- Provides Virtual Write technology, so that you can copy files into a read-only drive and do not affect other people using other clients.
- Provides as many as 8 virtual drives.
- Provides simple and banausic management tool, to manage virtual drives.
- Fully conforms to the latest iSCSI Standard 1.0 (former Draft 20).";
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 = '';
}
}