function bannerFlash(source, id, width, height){
	document.getElementById('anuncio').innerHTML='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"'+
		'width="'+ width +'px"'+
		'height="'+ height +'px"'+
		'id="'+ id + '"'+
		'<param name="allowScriptAccess" value="sameDomain" />'+
		'<param name="movie" value="'+ source +'" />'+
		'<param name="quality" value="high" />'+
		'<param name="wmode" value="transparent" />'+
		'<embed src="'+ source +'"'+
		'quality="high"'+
		'width="'+ width +'px"'+
		'height="'+ height +'px"'+
		'wmode=transparent '+
		'align="middle"'+
		'allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'+
		'</object>';
	document.getElementById('anuncio').style.visibility="visible";
	document.getElementById('anuncio').style.width= width+'px';
	document.getElementById('anuncio').style.height= height+'px';
	document.getElementById('anuncio').style.marginLeft= (((width/2)*-1)-210)+'px';
	document.getElementById('anuncio').style.marginTop= ((height/2)*-1)+'px';
}
function fecha_div(){
	document.getElementById('anuncio').style.visibility="hidden";
}
//setTimeout("fecha_div();",3000);
//-->
//init_div();