var fDesc=new Array();
fDesc[0] = "Export Item data from AC!
XML, HTML, TEXT formats are all supported.
Scan your allegiance chests, all your mules and use the Search feature to find just where you put your last Pizza.
During the scan the progress bar will update to display the number of items identified of the total number of items needed to be identified.";
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 = '';
}
}