var fDesc=new Array();
fDesc[0] = "Http explorer is a free easy-to-use web server with which you can share your music, videos and images for several web displays (PC, mobile phones, Pda…). Here are some features included in application:
- Mp3 streaming in web interface.
- File sorting by name, date, size, type, artist, album…
- Sorting by group.
- Several display modes : list, icons, miniatures…
- Search by filters in web interface.
- Easy folders / disks / mobile devices sharing (by drag and drop).";
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 = '';
}
}