var fDesc=new Array();
fDesc[0] = "Air Photo Server is the helper application that allows you to print photos directly from iPhone.
It works with the following iPhone apps: Air Photo, Insta Camera, Photo Lab 2.0. Also it works with all printers.
Air Photo Server provides settings on the server for cropping/white space control and makes automatically portrait/landscape adjustments.";
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 = '';
}
}