function inter(varLargura,varAltura,varTopo,urlArquivo,varId,varTagname) {
	function abre() {
		e = (document.body.clientWidth/2) - (varLargura/2);
		document.getElementById('intermission').style.left = e;
	}
	onresize = function() {
		if (varLargura != '100%')
			abre();
	}
document.write("<div id='intermission' style='position:absolute;width:"+ varLargura +";height:"+ varAltura +";z-index:1;top:"+ varTopo +"px;'><object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 width="+ varLargura +" height="+ varAltura +"><param name=movie value="+ urlArquivo +"?id="+ varId +"&tagname="+ varTagname +"><param name=quality value=high><param name=wmode value=transparent><embed src="+ urlArquivo +"?id="+ varId +"&tagname="+ varTagname +" width="+ varLargura +" height="+ varAltura +" quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash wmode=transparent></embed></object></div>");
if (varLargura != '100%')
	abre();
}
function fecha() {
	document.getElementById('intermission').style.display = 'none';
}