var fDesc=new Array();
fDesc[0] = "Features:
-Browse the internet without leaving MyUniverse;
-Access hard drive or network files without leaving MyUniverse;
-Print and Print Preview for the current project page;
-Pan around a page or zoom in and out;
-Text search capability to search for information in a project;
-View where in a project the currently visible page is;
-Gives different looks to the application;
-MyUniverse remembers the navigation order to make it easy to go back to a previous view;
-Set a background Image or Color pattern;
-A library of all parts available for the creation of MyUniverse projects;
-Projects can be saved as secure project files with password protection.";
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 = '';
}
}