var fDesc=new Array();
fDesc[0] = "You have a big image and you want to see it on your iPhone or iPod Touch in its full glory ? Create a Displayable using this convenient application on your Desktop or Laptop computer, and use the Displayator iPhone app to see it on your mobile device.
The Displayable Creator is a Java Application, thus it runs on Windows, Linux and Mac OS X.";
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 = '';
}
}