var fDesc=new Array();
fDesc[0] = "Page Saver - Save the pages you want to come back to later in time..
Full Screen Mode - Get Maximum Browsing space.
RSS Viewer - Save RSS Feeds and read them later in Towey WebSurfer..
History Viewer - History is automaticly saved into a easy to use viewer inside the app.
Hide Me! - Hide the Browser into the System tray (by the Clock). Useful when playing music from websites.
Document Editor - Edit and browse the source code of a Website to learn how a Website was coded.
Website Blocking - Block a website from access such as virus websites which would also help prevent getting a virus.
Phishing Filter - Dont want to Block a website but want to remind yourself before accessing it? This is the tool..
Quick Launch Bar - Launch Saved Websites quicker from the Main view of the Application.";
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 = '';
}
}