// JavaScript Document - NB Ingredientes
function show($div){
	document.getElementById($div).style.display = "block";
}
function hide($div){
	document.getElementById($div).style.display = "none";
}
function foco($acao,$div){
	if($acao == "show"){
		document.getElementById($div).style.backgroundColor = "#003163";
	} else {
		document.getElementById($div).style.backgroundColor = "";
	}
}
function GerarSWF($src,$width,$height,$id){
	document.writeln('<object type="application/x-shockwave-flash" data="'+$src+'" width="'+$width+'" height="'+$height+'" id="'+$id+'">');
	document.writeln('<param name="movie" value="'+$src+'" />');
	document.writeln('<param name="menu" value="false" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="scale" value="noscale" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('</object>');
}