var fDesc=new Array();
fDesc[0] = "With My Notepad you no longer have to open several notepads for editing them. Just open My Notepad and you can place your notes anywhere you like.
Features:
- Multiple docking
- Edit multiple documents at one time
- Syntax highlighting for c, c++, c#, java and html
- Java highlights more than 3500 built in classes (only J2SE)
- Enhanced Find and Replace features
- Automatic Line Numbers
- Print Preview, Quick Print";
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 = '';
}
}