var fDesc=new Array();
fDesc[0] = "The AllWebMenus SEO CSS Menu Addin adds the following functionality to AllWebMenus for creating SEO-friendly menus, through either the "sitemap-based SEO" or the "on-page SEO" method.
Sitemap-based SEO: Search engines will crawl your menu links through a single sitemap file that they find on your website.
On-page SEO: Search engines will crawl your menu links through HTML code that you add to your pages.";
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 = '';
}
}