var fDesc=new Array();
fDesc[0] = "SurFX is a web browser made in Visual Studio 2010.
Main features:
- simple browser with no web history and it doesn't remembers any password nor it asks for remembering.
- it has in-built Google search
- it provides quick links to social networking sites as well as mail service providing sites like Gmail and YahooMail!
- added text -to-speech program
- check you IP address by one click";
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 = '';
}
}