var fDesc=new Array();
fDesc[0] = "Pulsar is a freeware starmaker for those who want to make stars but don't wish to buy Quasar! There are other effectsto aply to images: the silhouetting, the midnight-blue selective gradient , were achieved using plugins that are still in preparation: Conditioner and MetaGrad, respectively. The Pulsar download file contains demo versions of those two plugins, along with a third plugin called Refiner.";
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 = '';
}
}