<!--
function MM_checkPlugin(plgIn, theURL, altURL, autoGo) { //v4.0
var ok=false; document.MM_returnValue = false;
with (navigator) if (appName.indexOf('Microsoft')==-1 || (plugins && plugins.length)) {
ok=(plugins && plugins[plgIn]);
} else if (appVersion.indexOf('3.1')==-1) { //not Netscape or Win3.1
if (plgIn.indexOf("Flash")!=-1 && window.MM_flash!=null) ok=window.MM_flash;
else if (plgIn.indexOf("Director")!=-1 && window.MM_dir!=null) ok=window.MM_dir;
else ok=autoGo; }
if (!ok) theURL=altURL; if (theURL) window.location=theURL;
}
//-->

var flashVariable = "?";

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=7,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";
	}
}
