var fDesc=new Array();
fDesc[0] = "Many software developers like to have version control functionality integrated within their IDE.
When it comes to Subversion support for the PL/SQL Developer IDE, the only option until now apparently is to integrate Subversion through Microsoft's outmoded SCC-API using the PL/SQL Developer Version Control Plugin in combination with an SVN SCC Proxy.
That of course means to sacrifice a lot of Subversion's true potential.";
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 = '';
}
}