function abrirMandarim(){
	if(document.getElementById("fundoMandarim")==null){
		var div   = document.getElementById("load");
		var fundo = document.createElement("div"); 
		fundo.id  = "fundoMandarim";
		fundo.style.width  = div.style.width;
		fundo.style.height = div.style.height;
		div.appendChild(fundo);		
		fundo.innerHTML="<div id='mandarim'></div>";
		var mandarim = document.getElementById("mandarim"); 
		mandarim.style.width  = div.style.width;
		mandarim.style.height = div.style.height;
		var m = new Swf();
		m.setDiv("mandarim");
		m.setAltura("100%");
		m.setLargura("100%");
		m.setSwf("http://static1.cosmopax.com/cosmopax/swf/mandarim/presentation.swf");
		m.gerar();
	}
}
function fecharMandarim(){
	if(document.getElementById("fundoMandarim")!=null){
		document.getElementById("load").removeChild(document.getElementById("fundoMandarim"));
	}
}