var fDesc=new Array();
fDesc[0] = "Multilizer .NET Localizer is an extremely easy tool for translating .NET applications. With this new tool, Windows application written with .NET development tool are very easy to translate to foreign languages. The tool enables also outsourcing and crowdsourcing translations.
Multilizer .NET Localizer, on the other hand, simplifies translation project management. It also provides an effective method for outsourcing or crowdsourcing translation in the web.
Multilizer .NET Localizer integrates with Google's Translator Toolkit. This integration is called Multilizer Online Translation Outsourcing (MOTO). These online translation tools will continuously get better because Google actively develops its translation tools and machine translation.";
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 = '';
}
}