var fDesc=new Array();
fDesc[0] = "Codly allows you to convert your Photoshop mobile design into the native code.
Main features:
- Organize and export the UI source code, converting your Photoshop design to an interactive, working prototype.
- Preview and share a working copy of your application, not only an image for the app.
- Automatically generate the UI components of your application, no need for writing hundreds of UI Codes.";
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 = '';
}
}