var fDesc=new Array();
fDesc[0] = "Spoiler Sync is a program written to help with geocaching. It allows geocachers with PDA's to automatically carry a folder of spoiler pictures for the geocaches they are attempting to find.
Often there is no need for a spoiler picture if the co-ordinates are accurate and tree cover is not present or a good hint is available. But if you are still struggling and a spoiler is available - you want to see it !";
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 = '';
}
}