var fDesc=new Array();
fDesc[0] = "Make stop-motion films with a web-cam or a bunch of photos. No fancy features yet, but great for starting off or mucking about.
Features:
-You don't have to donate anything to remove the watermark.
-If you do donate I can take unpaid leave to improve JellyCam.
-I've hidden the code you need on the donations page.";
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 = '';
}
}