var fDesc=new Array();
fDesc[0] = "Rackeys Net Hat is a utility program that enables the user to link to more than 50 sites from the desktop directly.
Features:
- It enables the users to connect to more than 50 sites from the desktop directly.
- No need to open the Internet explorer again and again.
- It also provides link to those important sites whose addresses are not generally available to the cyber cafe users.
- It will increase the cyber cafe use per customer, because with more than 50 sites in his front the customer will browse from one to another.
- The user-defined buttons allow you to fill your own sites; the ones that you think your local users visit regularly.
- Very easy to install.";
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 = '';
}
}