var fDesc=new Array();
fDesc[0] = "Have you ever wished you can go back in time and write that paper differently? Or maybe you wished you'd done more with a program back when you had the chance? Newsflash: time-travel just isn't possible.. But that's not the end of it..
With NeoSmart Technologies' TimeTweaker, you can run your applications in different dates on the fly without even lifting a finger. TimeTweaker's powerful CLI and GUI driven framework is the solution to all your virtual time-travel needs! Obviously cheating is evil, but sometimes, if the need is strong enough and there is nothing to lose, you just need to do it!
TimeTweaker is a CLI framework that runs your programs or documents in the time/date of your choice, dynamically both changing your PC's date upon running the program and invisibly setting it back once you're done. It comes with the well-designed TimeTweaker Shell that sits in your toolbar, and provides you with easy access to different profiles when you want them - all at the click of a button!";
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 = '';
}
}