function flash (div,w,h,url) {
	var Nav = navigator.appName;
	if(Nav != "Netscape"){
		//IE
		var objeto = document.createElement ('object');
		document.getElementById (div).appendChild (objeto);
		objeto.classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000";
		objeto.codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0";
		objeto.width=w;
		objeto.height=h;
		objeto.movie=url;
		objeto.wmode="opaque";
	}else{
		//firefox
		var objeto = document.createElement ('embed');
		document.getElementById (div).appendChild (objeto);
		objeto.pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash";
		objeto.width=w;
		objeto.height=h;
		objeto.src=url;
		objeto.quality="high";
		//objeto.wmode="transparent";
	}
	
}
function GerarSWF($arquivo,$altura,$largura,$id){
    document.writeln('    <object id="globalnav-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="bgcolor" value="#ffffff" />');
    document.writeln('        <param name="menu" value="false" />');
    document.writeln('        <param name="quality" value="high" />');
    document.writeln('        <param name="salign" value="tl" />');
    document.writeln('        <param name="scale" value="noscale" />');
    document.writeln('        <param name="wmode" value="transparent" />');
    document.writeln('        <embed id="globalnav-embed" src="' + $arquivo + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" flashvars="loc=en_US&htmlApp=false&gatewayURL=gwurl" bgcolor="#ffffff" menu="false" quality="high" salign="tl" scale="noscale" id="' + $id + '" width="' + $largura + '" height="' + $altura + '"></embed>');
    document.writeln('    </object>');
}
