var fDesc=new Array();
fDesc[0] = "Librarian is the powerful libraries manager for Windows 7 which allows you to take full control on Windows 7 libraries, including custom icons with two clicks.
Features:
- Create a new library with any folder(s) inside.
- Change library's icon.
- Rename library.
- Change content type of new or current library.
- Change "default save location" option.
- Change "Show in Navigation Pane" option.
- Show library as XML.
- Since 2.0 you will able add several folders by one action to library.";
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 = '';
}
}