var fDesc=new Array();
fDesc[0] = "AttachToLazy is a Visual Studio add-in that facilitates attaching to a process for debugging and also waiting for a process to start and then automatically attach to it.
This is a simple add-in for Visual Studio 2005/2008, which adds a simple toolbar allowing the user to attach to a process for debugging. The user can configure to which process to attach and with a simple click Visual Studio will attach to the process in Manage and/or Native.
AttachToLazy saves time and makes it easier to debug.";
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 = '';
}
}