var fDesc=new Array();
fDesc[0] = "UltimateSpell helps you add a Microsoft Word®-like spell checker to your ASP.NET website or CMS product in just a few clicks. Includes:
-Word®-like Inline Spelling — Spell check as you type in any editable area by underlining misspelled words with a red squiggly line. Drag-and-drop onto your web form in Visual Studio, and run.
-Word®-like Spell Dialog — Display a traditional spell check dialog box to correct spelling mistakes sentence-by-sentence. Spell check 1500 words per second using the provided API.
-Life-Saver Samples — Use the provided C-and VB samples as your templates. Copy the most appropriate sample into your web application, and go live as quickly as possible.";
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 = '';
}
}