var fDesc=new Array(); fDesc[0] = "Two snowmen made with clean white snow and lovingly adorned with a hats, scarves, and brooms sit in the snowy front yard of a huge house.
Fresh snow falls softly from the nighttime sky and the Christmas lights on the pine trees bathe the yard in soft light. Then suddenly the snowmen magically come alive!
They tramp through the snow, always on the lookout for passing cars. As soon as one drives by, they freeze so that no one notices their secret nocturnal escapades."; 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 = ''; } }