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>');
}

function CloseDiv($id){
	var div = document.getElementById($id);
	div.style.display = "none";
}