var fDesc=new Array();
fDesc[0] = "Ryll Drive Creator is an application which allows you to divide your laptop or computer partition. Drive made here is a virtual drive that you can create your own liking.
System Requirements
1.Processor Intel Pentium III
2 Ram 128 Mb
3 HDD 20GB Spase
4.Support entire graphic card
5. Support Windows xp, windows 7";
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 = '';
}
}