var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Gestionar todos los mensajes de FSCommand de una película Flash
function menu_net_DoFSCommand(command, args) {
	var menu_netObj = isInternetExplorer ? document.all.menu_net : document.menu_net;
	//
	if(command == "noticias") {
		window.open('/noticias/index.html','noticias','height=550,width=800,status=yes,toolbar=yes,menubar=no,location=no');
	} else if(command == "prensa") {
		window.open('/prensa/index.html','prensa','height=550,width=800,status=yes,toolbar=yes,menubar=no,location=no');
	} else if(command == "agenda") {
		window.open('/noticias/index_agen.html','agenda','height=550,width=800,status=yes,toolbar=yes,menubar=no,location=no');
	}
	//
}
// 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 menu_net_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call menu_net_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
ß