<!--
var secao = 1234; 

ns4 = ( document.layers )? 1:0;
ie4 = ( document.all )? 1:0;

function setDOM(){
if (ns4) {
	bloco = document.layers['confetiDiv']
	bloco.ypos = bloco.top
	}
if (ie4) {
	bloco = document.all['confetiDiv'].style
	bloco.ypos = bloco.pixelTop
	}
if (ns4 || ie4) move();
}

function move(){
if (bloco.ypos < 800) {
	bloco.ypos += 2;
	bloco.top = bloco.ypos;
	setTimeout("move()",1);
}	
if (bloco.ypos >=800) bloco.top = - 228;
}

//-->
