var fDesc=new Array();
fDesc[0] = "PhanTim3 is a fully customizable and skinnable countdown timer. It can stick on your desktop and count down to any arbitrary date or special event; for example, movie and DVD releases.
Main features:
- Countdown to any arbitrary date/time.
- Choose from a large number of provided skins, or make your own!
- Set up a random rotation of skins, and have them change automatically.
- Intuitive, easy-to-use interface.
- Easy to install and add/remove skins.
- Works on any Windows computer!";
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 = '';
}
}