// JavaScript Document<!-- 
//JavaScript Flash detection and deployment 
//(c)2004 Adrian Rowbotham 
//www.ajrdesign.net 


/* -- 1. Player Version detection -- */ 

//set player version here 
var MM_contentVersion = 8; 

//set sub version here 
var release = "8,0,22,0"; 


//check for flash player 
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0; 
if ( plugin ) { 
var words = navigator.plugins["Shockwave Flash"].description.split(" "); 
for (var i = 0; i < words.length; ++i) 
{ 
if (isNaN(parseInt(words[i]))) 
continue; 
var MM_PluginVersion = words[i]; 
} 
var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion; 
} 
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 
&& (navigator.appVersion.indexOf("Win") != -1)) { 
document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag 
document.write('on error resume next \n'); 
document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion)))\n'); 
document.write('</SCR' + 'IPT\> \n'); 
} 


/* -- 2. Deployment function -- */ 

function writeFlash(swf,flashVarString,w,h,bgcolor,menu,mode,q,id){ 
if ( MM_FlashCanPlay ) { 
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' 
+'codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+release+'" ' 
+'width="'+w+'" height="'+h+'" id="'+id+'" name="'+id+'" align="">' 
+'<param name="movie" value="'+swf+'">' 
+'<param name="menu" value="'+menu+'"> ' 
+'<param name="swLiveConnect" value="true"> ' 
+'<param name="allowScriptAccess" value="sameDomain"> ' 
+'<param name="quality" value="'+q+'"> ' 
+'<param name="wmode" value="'+mode+'"> ' 
+'<param name="bgcolor" value="'+bgcolor+'"> ' 
+'<param name="flashvars" value="'+flashVarString+'"> ' 
+'<embed src="'+swf+'" allowScriptAccess="sameDomain" flashvars="'+flashVarString+'" menu="'+menu+'" quality="'+q+'" wmode="'+mode+'" ' 
+' bgcolor="'+bgcolor+'" width="'+w+'" height="'+h+'" name="'+id+'" ' 
+' align="" type="application/x-shockwave-flash" swLiveConnect="true" ' 
+' pluginspage="https://www.macromedia.com/go/getflashplayer"></embed></object> '); 
} else { 
//behaviour for if there is no flash player 
document.write('You require Flash Player '+MM_contentVersion+' or later to use this site. '); 
document.write('<em><a href="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank">'); 
document.write('Click here to install it now.</a></em>'); 


//this can be replaced by anything you want 
//e.g. document.location.replace("text.html"); 

} 
} 


// --> 

function simulateClick(element) {
  if (!element) return;
  var dispatchEvent = function (elt, name) {
    var clickEvent = document.createEvent('MouseEvents');
    clickEvent.initEvent(name, true, true);
    elt.dispatchEvent(clickEvent);
  };
  dispatchEvent(element, 'mouseover');
  dispatchEvent(element, 'mousedown');
  dispatchEvent(element, 'click');
  dispatchEvent(element, 'mouseup');
};



var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function procurados_DoFSCommand(command, args) {
	var procuradosObj = isInternetExplorer ? document.all.procurados : document.procurados;
	//
	//alert(args);
	
	if(args == "rocinha"){
	if (navigator.appName.indexOf("Microsoft") != -1){
		document.getElementById('modalRocinha').click();
	}else{	
		simulateClick(document.getElementById('modalRocinha'));	 
	}
	}else if(args == "mulheres"){
	if (navigator.appName.indexOf("Microsoft") != -1){
		document.getElementById('modalMulheres').click();
	}else{	
		simulateClick(document.getElementById('modalMulheres'));	 
	}
	}
	//
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub procurados_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call procurados_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
 
