var fDesc=new Array();
fDesc[0] = "StorURL is a utility that allows you to store all your favorite website URLs with a descriptive title to go along wtih the URL. If you like to keep a lot of websites bookmarked, but you don't want to clutter for your "Bookmarks/Favorites" menu, then this program will surely help you out.
Main features:
- Import/Export most browser favorites lists, including Internet Explorer, Firefox, and Opera.
- Open websites in any browser directly from within StorURL, or preview them with the built-in browser based on the IE engine.
- Store and sort sites in unlimited categories.
- Generate HTML "home" pages containing links from one or all categories.
Supported/Tested Operating Systems: Windows® 2000, Windows® XP, Windows® Vista Home Basic";
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 = '';
}
}