function loadFlash(path,width,height,params)
{
	f = '<object type="application/x-shockwave-flash" data="'+path+'" width="'+width+'" height="'+height+'">\n';
	f += '<param name="movie" value="'+path+'" />\n';
	f += '<param name="menu" value="false" />\n';

	if(params)
	{
		for(var x = 0; x < params.length; x++)
		{
			f += '<param name="'+params[x].name+'" value="'+params[x].value+'" />\n';
		}
	}

	f += '</object>\n';

	document.write(f);
}

function loadSWF($arquivo,$largura,$altura){
	
	document.writeln('    <object type="application/x-shockwave-flash" data="'+$arquivo+'" width="'+$largura+'" height="'+$altura+'">');
    document.writeln('        <param name="movie" value="' + $arquivo + '" />');
    document.writeln('        <param name="bgcolor" value="#ffffff" />');
    document.writeln('        <param name="quality" value="high" />');
    document.writeln('        <param name="wmode" value="transparent" />');
    document.writeln('    </object>');
}
