var fDesc=new Array();
fDesc[0] = "Net Viewer Lite is an Internet Explorer Utility for Windows 2000, Windows XP, Windows Vista, and Windows 7, allowing you to Browse the Web using Multiple Internet Explorer Windows.
Features:
- Browse the Internet and selectively save Web Site addresses using Multi Internet Explorer Window Viewing.
- Save Favorite Web Sites for quick access and Favorites are automatically accessible with Internet Explorer.
- Simply click on the Web Site Favorite to quickly go to the Web Site in the current or new window.
- Assign up to 34 of your Favorite Web Sites to buttons that will take you to the web site with one click.
- Create Lists of Web Sites for quick viewing of specific Web Sites on the list with the click of a button.
- Run lists automatically on timer for continuous Browsing. eg. Automatically get stock quotes every 30 seconds.
- Tracks Browsing History for each Internet Explorer Window that is easily added to Favorites and Favorite Web Page Lists and so much more.";
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 = '';
}
}