var fDesc=new Array();
fDesc[1] = ", SHA1,SHA2, RIPEMD160,PANAMA,TIGER , CRC32,ADLER32 algorithms and the hash used in eMule/eDonkey(eDonkey2 000,ed2k). Good to check/compare files.";
fDesc[2] = "functions like MD5, CRC, SHA-1 and some other less popular functions. It can also be used to compare a file with its MD5 file (.md5 file) so as to verify its integrity.";
fDesc[3] = "text or binary file, and it's an excellent source editor for Web page authors, developers, and programmers.";
fDesc[4] = "choose \"MD5 Calculator\" to instantly get the md5 value for that file . MD5 is now commonly used by webmaster of downloadable programs on the their websites to ensure their content is not infected or modified in anyway.";
fDesc[5] = "operations as Hex/Dec/Oct/Bin conversions, Jacobi symbol inversion calculations, statistical data testing, and hash algorithms. Featuring support from Windows Vista and XP visual styles, this multiple-precision calculator comes with unlimited online help.";
fDesc[6] = "algorithms, uses XML-based and Unicode-enabled checksum file format, and has the integrated checksum calculator. Supports the SFV and MD5SUM.";
fDesc[7] = ", system administrators and software developers.";
fDesc[8] = "about any text or binary file, and it's an excellent source editor for Web page authors, developers, and programmers.";
fDesc[9] = "be immideately displayed. Supported cryptographic hash calculation algorithms include CRC32, GOST hash, MD2, MD4,MD5, SHA-1, SHA2";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}