<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function mapa_DoFSCommand(command, args) {
  var mapaObj = InternetExplorer ? mapa : document.mapa;
	switch(command){
		case "goto":
			self.location="../../../phtml/redcomercial.php/"+currentlanguage()+"/"+ args.toUpperCase()
		break;
		case "gotoSP":
			self.location="../../../phtml/redcomercial.php/"+currentlanguage()+"/EUROPA/ESPA%D1A/"+ escape(args.toUpperCase())
		break;
	}
}
// 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 mapa_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call mapa_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\> \n');
}
//-->
