var fDesc=new Array();
fDesc[0] = "Unexplored depths of far away space has always excited the imagination of mankind. What is beyond the solar system? Are there any other civilizations? Install free space screensaver and make a wonderful trip into deep space on our spaceship. Unknown planets, intelligent inhabitants of the universe, asteroids and fireballs, spaceships and comet will impress you. Download and install free screensaver!";
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 = '';
}
}