var fDesc=new Array();
fDesc[0] = "WebBudget XT is a world class software tool that helps language professionals and localization managers to quickly assess and translate the content of a web project.
Main features:
- Support for most common tagged formats, such as HTML, SGML, XML, ASP, JSP, PHP and variations
-Support for UTF-8 encoding.
-Support for most common scripting languages, such as javascript, vbscript.
-Code-free text extraction and segmentation.
-User-friendly translation interface. Low learning curve.
-Easy-to-use integrated translation memory.
-Advanced fuzzy logic, including auto-assembling feature
-TMX import / export support.";
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 = '';
}
}