
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
function menu_DoFSCommand(command, args)                {
  var menuObj = InternetExplorer ? menu : document.menu;
  //alert ("Cargó el menú");
  cargarVariables();
}
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_FSCommand(ByVal command, ByVal args)\n');
  document.write(' call menu_DoFSCommand(command, args)\n');
  document.write('end sub\n');
  document.write('</SCRIPT\> \n');
} 

var strNavHTML = "<table border='0' cellspacing='0' cellpadding='0' width='100%' id='Navigation'>" +
	         "<tr>" +
		 	"<td>" +
		 	"<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' " +
				"codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' " + 
				"width='170' height='130' id='menu'><param name='movie' value='" + strRootPath + "flash/menu.swf'>" + 
				"<param name='quality' value='high'><embed src='"+strRootPath+"flash/menu.swf' quality='high' " +
				"pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='170' height='130' name='menu' swLiveConnect='true'> " + 
			"</embed></object>" +
			"</td>" +
		 "</tr>" +
		 "</table>";

document.write(strNavHTML);
