var fDesc=new Array();
fDesc[0] = "DSV PHP Editor is a user-friendly program for creating, editing, debugging and analyzing PHP scripts, HTML, XML, Java Script, CSS, and SQL pages. Editor is designed specifically for PHP development; it is comfortable both for beginners and experienced programmers. Has auto complete, live syntax check, integrated debugger, PHP function parameters hints, built-in HTTP server, built-in FTP client, code explorer, file manager, search and replace in files utility, PHP functions 'on mouse over' help hints, one-click run and syntax check, quick insertion of PHP functions, code templates , project manager, To Do list, snippets, F1 PHP, HTML and CSS help support, MySQL explorer and MySQL builder.";
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 = '';
}
}