var fDesc=new Array();
fDesc[0] = "Better search engine visibility in just a few clicks.
Sitemaps are a great SEO tool. They give you a way to stand up and say, “Hey, search engines! Over here! Check out my site.” And sitemaps are also a great usability tool. They give your visitors a secondary navigation option, not to mention a peek at how your website is structured.
Yep, sitemaps form a near-perfect intersection of SEO and usability. Unfortunately, they’re pretty tedious to put together… unless you’re using CoffeeCup Sitemapper to automatically generate them.";
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 = '';
}
}