var fDesc=new Array();
fDesc[0] = "Dirkey is a small utility that enables you to define bookmarks for folders and go back to these bookmarked folders from within File Open/Save dialogs and Windows Explorer. You can set and go to these bookmarks using your keyboard or your mouse. When Dirkey is active you can press Ctrl Alt 0..9 in e.g. an Open/Save File dialog and a bookmark will be set on the current folder.
You can go to any bookmarked folder by using Ctrl 0..9 in the same or another supported window. All bookmarks are global and are preserved when you turn your computer off. You can also open bookmarked folders in a new Explorer window.";
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 = '';
}
}