var fDesc=new Array();
fDesc[0] = "iSilo™ is a highly versatile document / ebook reader available on more platforms than any other reader. You can find thousands of already-made documents downloadable immediately for reading with iSilo™ or you can create your own documents from HTML content using iSiloX. Some of the major features that will win you over to iSilo™ include:
High text compression in iSilo™ format documents result in a 50% to 60% decrease in size, which is about 20% better than the Palm Doc format, allowing you to store more and larger documents on your handheld.
Hyperlinks make it much easier to navigate through a document.
Images add visual richness to documents, especially photo-quality color pictures.
Tables allow the display of tabular data.
Formatted text gives style to text for controlled emphasis.";
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 = '';
}
}