var fDesc=new Array();
fDesc[0] = "People have thought about the wings of an everlasting life since the beginning of history. Just imagine this for a moment. Mortal stars collapse to their nebulous cores. Worlds die and worlds are born. But you live on - immortal, eternal, Godlike. Alchemic Clock screensaver recreates this idea of immortality in a digital form.
Alchemic Clock is a wonderfully drawn clock screensaver with the cartoon-style graphics. The screensaver displays a round clock in the center with some mythological beasts turning around the clock in the anticlockwise direction. There are also some ancient texts and a table of elements with some cabbalistic characters. The characters hide a secret formula of the Philosopher's stone. Those who can read this formula can get the wings of everlasting life.";
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 = '';
}
}