var fDesc=new Array();
fDesc[0] = "Zodiac Clock is a new time measuring tool able to tell you a day of the week and the month as well.
Moreover it brings you energy of a current zodiac sign, it's very useful for harmonizing your everyday rythms with the natural life cycles.
Main features:
-Always know the current time, day of the week and the month!
-The actual position of the Sun and the Moon in your region
-Various scenery for every season
-Feel the Pulse of the information age
-Make the Contribution to the Evolution
-Tune in the Energy of the Current Zodiac Sign!
-Feel the harmony of the Universe!";
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 = '';
}
}