var fDesc=new Array();
fDesc[0] = "Auto MP3 Player is an easy to use application that will allows your computer auto wakes up from sleep mode to play MP3 music and auto closes. This program is a nice mini MP3 player, it can control your computer auto wake up and turn off, make your computer become advanced and intelligent music clock. This program starts along with a windows services, it doesn't require a user to be logged on.
==Features==
* A nice mini MP3 player
* Auto wake up the computer to play MP3
* Allows the music volume perform fade in effect
* Auto closes the computer (Trun off/ Hibernate/Standby)
* Doesn't require a user to be logged on";
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 = '';
}
}