var fDesc=new Array();
fDesc[0] = "DC Image Button is the only program that gives you full control over your application's interface. Give your program a creative boost by adding your own graphic buttons, icons, and images. Offering quick integration, simple codes, and easy setup, Image Button can suit any project, from simple games to high-end utility programs. With Image Button, it's easy to make the most user-friendly program and better communicate with your market.
Image Button allows you to change button icons according to your user's mouse actions. You can set your program to display a different graphic when users click, hover, or scroll away from the button. Simple adjustments like recessing upon click, or changing colors on mouse-over, can spell the difference between a basic application and an engaging, truly interactive program.";
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 = '';
}
}