// JavaScript Document
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
if(navigator.appName != "Microsoft Internet Explorer" && innerWidth > 790){
	 document.childNodes[1].style.overflowX = 'hidden';
}

// Gestionar todos los mensajes de FSCommand de una película Flash
function mascotaGran_DoFSCommand(command, args) {
	var mascotaGranObj = isInternetExplorer ? document.all.mascotaGran : document.mascotaGran;
		if (command && command=='ocultaRataGran')
		{
			 document.getElementById('lamascota2').style.left = 530 + 'px';
			 document.getElementById('lamascota2').style.top = 266 + 'px';
			 document.childNodes[1].style.overflowX = 'hidden';
		}
		else {
		window.status = args;	
		}
		if (command && command == 'mostraRata')
		{
		 	document.getElementById('lamascota').style.display = 'none';
		}
		else {
			window.status = args;	
		}
}
// Ancla para 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 mascotaGran_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call mascotaGran_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}