var fDesc=new Array();
fDesc[0] = "Clara: a preview of what the developer dream "surfing the web" was meant to be. So, now that you've played first-person-shooters for years, obsessively used "drop-shadow"-filters on all your designs and made each and every of your spreadsheet-diagrams fancy-3D-looking you finally get sick of that flat-looking WWW? Can't remember how many times to push that "back"-button to get out of the deadendstreet you got yourself in while searching the net for some information? No success consulting your browser-history for something that you just stumbled over 'couple of minutes, hours or days ago? Lost control over your tons of bookmarks? It lets you walk/fly/jump through a three-dimensional world where all the objects are painted with usable, interactive web-pages. It's not some statistics or fuzzy prerecorded images, you can read the pages just as you would in 2D.";
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 = '';
}
}