var fDesc=new Array();
fDesc[0] = "With BookmarkManager you can
* Bookmark websites from any web browser with a global hotkey.
* Bookmark documents, pictures, and other files with drag and drop ease.
* Bookmark projects folders for quick access.
* Bookmark frequently used programs by dragging them from the Start menu.
* Quickly search and find the bookmarks you need.
* Easily share bookmarks with friends and colleagues through Gmail.
* Label your bookmarks for easy reference and grouping.
* Import bookmarks from Google Chrome, Mozilla Firefox, Microsoft Internet Explorer, and Opera.
* Identify bookmarks quickly through icons.
* Carry your bookmarks with you by installing on a USB / thumb / pen drive.";
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 = '';
}
}