var fDesc=new Array();
fDesc[0] = "Create elegant photo albums for your own website with S10 WebAlbums.
No HTML or other web skills needed; simply add photos and you instantly have a working web album (see Web View). The rest is optional - titles/descriptions, custom colors/patterns/borders, basic photo editing, etc. When done, just save and publish.";
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 = '';
}
}