var fDesc=new Array();
fDesc[0] = "Immedirate is an application which let Windows Media Player users rate their songs easier and quicker than ever before - by one click! Listen to songs while you're working on your computer and rate them without disturbing your work.
Overview:
* Rate songs by only one click.
* Rate songs easily while working without disturbing your work.
* Attach Immedirate to the Windows Media Player Fly-Out / Floating Mode
* Display additional information of the current playing song.
* Beep if a song begins to play which has no rating.
* Displaying of auto ratings.
* Start with Windows
* Help / Quick-Help
System Requirements:
* Microsoft";
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 = '';
}
}