var fDesc=new Array();
fDesc[0] = "Altia(R) PhotoProto(tm) is a Photoshop(R) add-on that automatically transforms your Photoshop graphics into a working, interactive, user-driven prototype. Simply arrange and name your Photoshop graphics layers for buttons, screens and other user interface objects. Click on the PhotoProto menu and out pops a working prototype that you can instantly use and distribute. No complex scripting languages to wrestle. No new authoring environments to learn.
Take a look at Altia's web page to learn more about PhotoProto and all our user interface development tools. Jump straight to PhotoProto information at http://www.altia.com/products_photoproto.php?ref=xpad.";
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 = '';
}
}