var fDesc=new Array();
fDesc[0] = "The Document Updater is a utility that automatically finds only the documents associated with a specified MCU from a massive document library at the Renesas Web site at a single click, with no occurrences omitted. It also permits you to determine whether the searched document is of the latest version, as well as to download it, so that the documents needed for development can always be maintained up-to-date.
Furthermore, the Document Updater automatically searches for Renesas Web contents other than documents also, allowing for quick access to the related Web information. What's more, its My Manuals function makes this utility useful as a tool to manage personal documents in a PC.";
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 = '';
}
}