			var DATE_DAYS_OF___WEEK = new Array();
			var DATE_MONTHS_OF_YEAR = new Array();
			
			DATE_DAYS_OF___WEEK[1] = 'lunes';
			DATE_DAYS_OF___WEEK[2] = 'martes';
			DATE_DAYS_OF___WEEK[3] = 'mi&eacute;rcoles';
			DATE_DAYS_OF___WEEK[4] = 'jueves';
			DATE_DAYS_OF___WEEK[5] = 'viernes';
			DATE_DAYS_OF___WEEK[6] = 's&aacute;bado';
			DATE_DAYS_OF___WEEK[0] = 'domingo';
			
			DATE_MONTHS_OF_YEAR[0] = 'enero';
			DATE_MONTHS_OF_YEAR[1] = 'febrero';
			DATE_MONTHS_OF_YEAR[2] = 'marzo';
			DATE_MONTHS_OF_YEAR[3] = 'abril';
			DATE_MONTHS_OF_YEAR[4] = 'mayo';
			DATE_MONTHS_OF_YEAR[5] = 'junio';
			DATE_MONTHS_OF_YEAR[6] = 'julio';
			DATE_MONTHS_OF_YEAR[7] = 'agosto';
			DATE_MONTHS_OF_YEAR[8] = 'septiembre';
			DATE_MONTHS_OF_YEAR[9] = 'octubre';
			DATE_MONTHS_OF_YEAR[10] = 'noviembre';
			DATE_MONTHS_OF_YEAR[11] = 'diciembre';
			
			var MENU_ITEM_MOUSEOVER_BACKCOLOR = '#d8e4fe';
			var MENU_ITEM_MOUSEDOWN__BACKCOLOR = '#002369';
			var MENU_ITEM___________BACKCOLOR = '#dedede';
			var SUB_MENU_ITEM___________BACKCOLOR = '#d8e4fe';
			var SUB_MENU_ITEM_MOUSEOVER_BACKCOLOR = '#dedede';
			var SUB_MENU_ITEM_MOUSEDOWN_BACKCOLOR = '#808080';
		
			function menuItemMouseDown() {
			
				var e = whichMenuItem();
				var eStyle = e.style;
				
				eStyle.backgroundColor = MENU_ITEM_MOUSEDOWN__BACKCOLOR;
				eStyle.borderColor = '';
				e.children[0].style.color = '#ffffff';
			
			}
		
			function menuItemMouseOut() {
			
				var e = whichMenuItem();
				var eStyle = e.style;
				
				eStyle.backgroundColor = MENU_ITEM___________BACKCOLOR;
				eStyle.borderColor = '#f1f1f1';
				e.children[0].style.color = '#003366';
			
			}
		
			function menuItemMouseOver() {
			
				var e = whichMenuItem();
				var eStyle = e.style;
				
				eStyle.backgroundColor = MENU_ITEM_MOUSEOVER_BACKCOLOR;
				eStyle.borderColor = '';
				e.children[0].style.color = '#003366';
			
			}
			
			function whichMenuItem() {
			
				var e = event.srcElement;
				while(e.tagName != 'TD') {
				
					e = e.parentElement;
				
				}
				return e;
	
			}
			
			function getToday() {
				
				var returnValue = 'Venezuela, ';
				
				var now = new Date();
				var dayOfWeek = now.getDay();
				var d = now.getDate();
				var m = now.getMonth();
				var y = now.getYear();
				
				returnValue += DATE_DAYS_OF___WEEK[dayOfWeek] + ' ';
				returnValue += d + ' de ' + DATE_MONTHS_OF_YEAR[m] + ' de ' + y;
				
				return returnValue;
			
			}
			
			window.menus = new Array();
			window.menus[0] = null;
			
			function showSubMenu(subMenu) {
				
				if(window.menus[0] != null) {
				
					antSubMenu = document.getElementById(window.menus[0]);
					antSubMenuStyle = antSubMenu.style;
					antSubMenuStyle.display = 'none';
					
				}
				
				var clientBody = document.body;
				var e = whichMenuItem();
				var l = document.getElementById(subMenu);
				
				if((l != null) && (l.tagName == 'TABLE')) {
				
					lStyle = l.style;
				   	lStyle.position = 'absolute';
					lStyle.display = ''; 

				 if(clientBody.offsetWidth == '800') {					

						lStyle.left = ((((parseInt(clientBody.clientWidth, 10) - 154) - 190) -0) -0) + 'px';
						}
					 else if(clientBody.offsetWidth == '1024') {
						lStyle.left = ((((parseInt(clientBody.clientWidth, 10) - 200) - 190) -0) -0) + 'px';
						}
						
						 else if(clientBody.offsetWidth == '1152') {
						lStyle.left = ((((parseInt(clientBody.clientWidth, 10) - 224) - 190) -0) -0) + 'px';
						}
						
						 else if(clientBody.offsetWidth == '1280') {
						lStyle.left = ((((parseInt(clientBody.clientWidth, 10) - 250) - 190) -0) -0) + 'px';
						}
                     else {
					    lStyle.left = ((((parseInt(clientBody.clientWidth, 10) - 154) - 190) -0) -0) + 'px';
						}
										
						
				} 
				
				window.menus[0] = subMenu;
			
			}
			
			function hideSubMenu(subMenu) {
			
				var e = whichMenuItem();
				var l = document.getElementById(subMenu);
				
				if((l != null) && (l.tagName == 'TABLE')) {
				
					lStyle = l.style;
					lStyle.display = 'none';
				
				}
				
				window.menus[0] = null;
			
			}
			
			function subMenuItemMouseDown() {
			
				var e = whichMenuItem();
				var eStyle = e.style;
				
				eStyle.backgroundColor = SUB_MENU_ITEM_MOUSEDOWN_BACKCOLOR;
				eStyle.borderColor = '';
				eStyle.color = '#ffffff';
			
			}
		
			function subMenuItemMouseOut() {
			
				var e = whichMenuItem();
				var eStyle = e.style;
				
				eStyle.backgroundColor = SUB_MENU_ITEM___________BACKCOLOR;
				eStyle.borderColor = '#f1f1f1';
				eStyle.color = '#003366';
			
			}
		
			function subMenuItemMouseOver() {
			
				var e = whichMenuItem();
				var eStyle = e.style;
				
				eStyle.backgroundColor = SUB_MENU_ITEM_MOUSEOVER_BACKCOLOR;
				eStyle.borderColor = '';
				eStyle.color = '#003366';
			
			}

			window.verticalMenus = new Array();
			window.verticalMenus[0] = null;
			
			function verticalMenuMouseOver() {
			
				var e = whichMenuItem();
				
				if(e.tagName == 'TD') {
				
					eStyle = e.style;
					eStyle.backgroundColor = MENU_ITEM_MOUSEOVER_BACKCOLOR;
					eStyle.border = 'solid 1px #000000';
				
				}
			
			}
			
			function verticalMenuMouseOut() {
			
				var e = whichMenuItem();
				
				if(e.tagName == 'TD') {
				
					eStyle = e.style;
					eStyle.backgroundColor = MENU_ITEM___________BACKCOLOR;
					eStyle.border = 'none 0px Transparent';
				
				}
			
			}
			
			function showVerticalSubMenu(subMenu) {
				
				if(window.verticalMenus[0] == null) {
				
					e = document.getElementById(subMenu);
					eStyle = e.style;
					eStyle.display = '';
				
				}else {
				
					hideVerticalSubMenu(window.verticalMenus[0]);
					showVerticalSubMenu(subMenu);
				
				}
				
				window.verticalMenus[0] = subMenu;
			
			}
			
			function hideVerticalSubMenu(subMenu) {
			
				if(window.verticalMenus[0] != null) {
				
					e = document.getElementById(subMenu);
					eStyle = e.style;
					eStyle.display = 'none';
				
				}
				
				window.verticalMenus[0] = null;
			
			}
			
			function verticalSubMenuMouseOver() {
			
				var e = whichMenuItem();
						
				eStyle = e.style;
				eStyle.backgroundColor = MENU_ITEM_MOUSEOVER_BACKCOLOR;
			
			}
			
			function verticalSubMenuMouseOut() {
				
				e = whichMenuItem();
				
				eStyle = e.style;
				eStyle.backgroundColor = MENU_ITEM___________BACKCOLOR;
			
			}

// Cambios realizados por solicitud de divulgación

function archivopdf(ventana2) { 
window.open(ventana2,
'NuevaVentana',
'menubar=no,scrollbars=yes,'+ 'resizable=yes,' +
'width=700,height=400,left=50,top=121' + 'toolbar=no,directories=no,status=no,scrollbars=yes'); 
} 

function historialnoticias(ventana1) { 
window.open(ventana1,
'NuevaVentana',
'menubar=no,scrollbars=yes,'+ 'resizable=no,' +
'width=620,height=350,left=80,top=150' + 'toolbar=no,directories=no,status=no,scrollbars=yes'); 
} 

function tributos(ventana1) { 
window.open(ventana1,
'NuevaVentana',
'menubar=no,scrollbars=yes,'+ 'resizable=no,' +
'width=600,height=295,left=100,top=139' + 'toolbar=no,directories=no,status=no,scrollbars=no'); 
} 