var fDesc=new Array();
fDesc[0] = "The purpose of this program is to enable non-JavaScript users to create JavaScript Mouse Over effects, quickly and easily. The only thing you've got to do is add the artwork.
Works with or without Frames, you can have a second highlighted image, a Status Bar Message for every button, On Click image, save/load button schemes, select background image or color, creates the HTML files with a simple click.";
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 = '';
}
}