var fDesc=new Array();
fDesc[0] = "This is a power toy that will allow you to send your files directly to OneNote.
when you right-click on a file in Windows Explorer you will see a new option under the "Send To" menu for OneNote 2007.
Choosing that option will send the file to OneNote as a new page in the Unfiled Notes section";
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 = '';
}
}