var fDesc=new Array();
fDesc[0] = "MaCoPiX (Mascot Constructive Pilot for X) is a desktop mascot application for UNIX / X Window system and Microsoft Windows.
The special features of this application could be said as follows...
- You can make window sitters , fixed desktop mascots, and, furthermore, desktop clock mascots, using MaCoPiX.
This application could be a follower of "ActX". So, it is basically put emphasis on the function as an window sitter. But, of course, it can be used as the other type of desktop mascots.";
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 = '';
}
}