var fDesc=new Array();
fDesc[0] = "Chrome Mailer is an add-on for Google Chrome which automatically opens and composes a Gmail message whenever you click on a mailto: link. Windows' default mail client is bypassed in favor of Google's Web-based offering, making this a very useful addition for those who favor Gmail when working within their Chrome browser.
Toggling this behavior on and off is as simple as clicking a button within Chrome Mailer's interface. Support for Google Apps users with domains other than "gmail.com" is also included."";
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 = '';
}
}