var fDesc=new Array();
fDesc[0] = "Have you ever been on the Pole? Biting frost, snowstorms, blizzards - severe environment... But what's a beauty!
Let's enjoy it from our comfort places sipping hot coffee and looking to our PC screen with chilling Arctic Ices screensaver featuring 29-pictures slideshow with 31 icy transition effects.";
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 = '';
}
}