var fDesc=new Array();
fDesc[0] = "A World clock screen saver based on the Java SaverBean Screensaver SDK. In addition to the clocks, the screen saver also allows for UFOs.
Planes:
- name: name of the plane
- horizontal: direction of the horizontal movement of the plane, gauche: towards the left, droite: towards the right
- vertical: direction of the vertical movement of the plane, haut: towards the top, bas: towards the bottom
- image: plane's image path relative to the configuration file";
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 = '';
}
}