var fDesc=new Array();
fDesc[0] = "Tired of using slow Java-based IDEs? Always looking for a Visual Studio-like IDE for PHP? Have you ever dreamed of using Visual Studio for your PHP development?
VS.Php gives you the ability to do all your PHP development inside the most popular IDE on the market. Even if you don't own Visual Studio, VS.Php installs the free Visual Studio shell for you. Why settle for an imitation if you can use Visual Studio for all your PHP development needs?";
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 = '';
}
}