var fDesc=new Array();
fDesc[0] = "GINternet Explorer - Surf the web with a tabbed browser, containing a music library, imported favorites, and much more!
GINternet Explorer will help you to easily and safely browse the Internet and also listen to your favorite music from a single interface!
Main Features:
- Easy access to favorites, help, and other support!
- AutoComplete
- Integrated programs like Paint or AIM
- Automatic updates for new features!";
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 = '';
}
}