var fDesc=new Array();
fDesc[0] = "Features:
-Track basic campground information
(name, address, phone, website, email, GPS coordinates, campground open dates)
- United States and Canadian addressing
- Image Compression used to reduce database size
- Store pictures taken at the campground or in the are
- Track site information, amenities, costs, payment methods, services, policies and more
- Save maps of the campground sites, the entire park or the area
- Keep a record of each visit to the campground (site information, cost, etc.)";
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 = '';
}
}