var fDesc=new Array();
fDesc[0] = "Database for Code Snippets (Tips and Tricks) collecting to avoid the double working.
Features:
- Integrated editor with syntax highlight features (Supported languages: C#, C++, COBOL, CSS, Delphi (Pascal), HTML, PHP, Java Script, BASIC (Visual, Just), Perl, Phyton, .INI files, Scripts, SQL, XML and much more)
- Code Snippets (Tips) manager (create, delete, rename, edit, syntax properties, etc...)
- Import Tip from external file capability
- Graphics Tips support (pictures)
- *NEW* Full Drag and Drop support for both dragged files and text from other applications
- Drag and Drop support to copy or move Tips between categories
- Templates management with Macro's for new tips (with automatic insertion for date, title, developer name, and more...)
- Screen compatibility for Windows with Large Font (120 DPI)
- Dual monitor support
- Works with Vista and Windows 7
- *NEW* Works with 64-Bit Windows
- Check for program updates feature
- Skins (color themes) management
- Multilanguage: English, Italian, German, French, Dutch, Russian, Traditional Chinese, Turkish, Bulgarian, Polish and Hungarian, with support for translation into non-Latin languages (e.g. Russian, Chinese, etc.)
- Free support forum for bugs report or requests";
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 = '';
}
}