function abrir(){
	var myWidth  = 0; 
	var myHeight = 0;
	var W = 0;
	var H = 0;	
	var div = document.createElement("DIV");
	div.id='anima';
	if( typeof(window.innerWidth ) == 'number' ) {
	  //MOZZILA
	  W = document.body.clientWidth;
	  H = document.body.clientHeight;
	  H=H+276;
	}else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	  //IE 6
	  W = document.documentElement.clientWidth;
	  H = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	  //IE 4
	  W = document.body.clientWidth;
	  H = document.body.clientHeight;
	}
	div.style.width = W;
	div.style.height = H;		
	document.body.appendChild(div);
	var m = new Swf();
	m.setDiv("anima");
	m.setAltura(H);
	m.setLargura(W);
	m.setSwf("swf/caindo.swf");
	m.gerar();
}

function fechar(){
	if(document.getElementById("anima")!=null){
		document.body.removeChild(document.getElementById("anima"));
	}
}