var fDesc=new Array();
fDesc[0] = "The merriest people on My Opera get rewarded with gifts for being so merry. Each day one (1) t-shirt will be given away to a random My Opera member who comments in the most recent blog post by a user that has been handpicked.
This calendar will last from the 1st till the 24th of December . All you have to do is find the person (or blog), and post a comment in the most recent post wishing the author a Merry Christmas and you might win a t-shirt! We'll pick a random winner each time and you can only win a t-shirt once.";
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 = '';
}
}