function detectFlash () {
//	if ((navigator.appName == "Microsoft Internet Explorer" &&
//		navigator.appVersion.indexOf("Mac") == -1 &&   navigator.appVersion.indexOf("3.1") == -1) ||
//		(navigator.plugins && navigator.plugins["Shockwave Flash"])){
	if (navigator.plugins && navigator.plugins["Shockwave Flash"]){
	   //Achou o plug-in adequado.
		window.location='http://www.imovela.com.br/flash/';
	}
	else {
	   //Não Achou o plug-in adequado.
		window.location='http://www.imovela.com.br/';
	}
}

function flash (div,w,h,url,id1) {
	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://www.macromedia.com/go/getflashplayer";
		objeto.width=w;
		objeto.height=h;
		objeto.movie=url;
		objeto.wmode="opaque";
		if (id1 != "") {
		objeto.FlashVars="id_indicacao=" + id1 ;
		}
		//objeto.quality="high";
		//objeto.wmode="transparent";
		//objeto.bgcolor="#ececec"
		//objeto.salign="t"		
	}else{
		//firefox
		var objeto = document.createElement ('embed');
		document.getElementById (div).appendChild (objeto);
		objeto.classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" 
		objeto.pluginspage="http://www.macromedia.com/go/getflashplayer";
		objeto.width=w;
		objeto.height=h;
		objeto.src=url;
		objeto.quality="high";
		objeto.wmode="transparent";
		if (id1 != "" ) {
		objeto.FlashVars="id_indicacao=" + id1;		
		}	
		//objeto.bgcolor="#ececec"
		//objeto.salign="t"
		
	}
	
}
