var fDesc=new Array();
fDesc[0] = "Make your best photos come alive in an Albelli photo book. Don't let your photos waste away on a Hard Drive, show them!
You can choose between a variety of sizes and formats. Albelli's photo books are professionally printed on quality paper and bound and delivered to your home or as a gift to a friends doorstep within a few days.";
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 = '';
}
}