var fDesc=new Array();
fDesc[0] = "This screensaver shows beautiful images of powerful volcanoes. The erupting volcano is a spectacular, but very dangerous performance. Another show is the lava flow from the volcano's crater. The most dramatic and impressive event is the moment when red-hot lava falls into the water producing the big clouds of hot steam and stong noise. The extinct volcanoes as usual have the lakes in its crater with rich bluish-greenish water. But nobody exactly knows whether volcano is sleeping or really extinguished...
Install this screensaver and pease you eyes with the nice views of the powerful volcanoes!";
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 = '';
}
}