var fDesc=new Array();
fDesc[0] = "Get it Right spell checker provides you with a handy means of checking the spelling in order to make sure your words are correctly typed/written. It is fully featured as well, with a large selection of dictionaries, and custom import/export dictionary support and creation.
It is a useful stand-alone application that lets you easily and quickly verify the spelling of words in any Windows application. The spell checker is optimised for multi-core processors.
In fact, anything that supports the clipboard supports our spell checker. It has the following dictionaries included - Afrikaans, Dutch, English, French, German, Italian, Portuguese, and Spanish.
No Java or DotNet required, Green Energy Software...";
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 = '';
}
}