var fDesc=new Array();
fDesc[0] = "The Eternal Egypt Screensaver is a network-connectable client application that runs in the Microsoft Windows screensaver space. The screensaver currently has three features: a slideshow featuring images from the Eternal Egypt website, an animated version of the website Connections function and a movie version of the website introductory loop. The screensaver will run on a standalone computer, but if the computer is connected to the Internet, certain links will be activated, such as sending an eCard or connecting to an artifact's detail page.";
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 = '';
}
}