function GerarSwf($arquivo,$largura,$altura,$id){
	document.writeln('<div id="flash_object">')
	document.writeln('<object id="object" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + $largura + '" height="' + $altura + '" id="' + $id + '" name="' + $id + '">');
	document.writeln('<param name="movie" value="' + $arquivo + '" />');
	document.writeln('<param name="FlashVars" value="loc=en_US&htmlApp=false&gatewayURL=gwurl" />');
	document.writeln('<param name="menu" value="false" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<param name="scale" value="noscale" />');
	document.writeln('<embed id="globalnav-embed" src="' + $arquivo + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="loc=en_US&htmlApp=false&gatewayURL=gwurl" bgcolor="#ffffff" menu="false" wmode="transparent" quality="high" scale="noscale" id="' + $id + '" width="' + $largura + '" height="' + $altura + '"></embed>');
	document.writeln('</object>');
	document.writeln('</div>');
}

function wo($url, $width, $height, $scroll){
	var width = $width;
	var height = $height;
	var left = (screen.width/2)-(width/2);
	var top = (screen.height/2)-(height/2);
	
	window.open($url, "imprimir_promocao", "width="+width+", height="+height+", top="+top+", left="+left+", scrollbars="+$scroll+", toolbars=no, resizable=yes");
}