/* Rollovers */ var imgs = []; imgs['about_endesa'] = '/NR/Sites/Portal/Comun/img/about_endesa_hover.gif'; imgs['corporate_governance'] = '/NR/Sites/Portal/Comun/img/corporate_governance_hover.gif'; imgs['our_business'] = '/NR/Sites/Portal/Comun/img/business_hover.gif'; imgs['our_commitment'] = '/NR/Sites/Portal/Comun/img/our_commitment_hover.gif'; imgs['customers'] = '/NR/Sites/Portal/Comun/img/customers_hover.gif'; imgs['investors'] = '/NR/Sites/Portal/Comun/img/investors_hover.gif'; imgs['press'] = '/NR/Sites/Portal/Comun/img/press_hover.gif'; imgs['suppliers'] = '/NR/Sites/Portal/Comun/img/suppliers_hover.gif'; imgs['search'] = '/NR/Sites/Portal/Comun/img/search_hover.gif'; imgs['contact_us'] = '/NR/Sites/Portal/Comun/img/contact_us_hover.gif'; imgs['investment'] = '/NR/Sites/Portal/Comun/img/employment_hover.gif'; imgs['site_map'] = '/NR/Sites/Portal/Comun/img/site_map_hover.gif'; imgs['legal'] = '/NR/Sites/Portal/Comun/img/legal_information_hover.gif'; imgs['accessibility'] = '/NR/Sites/Portal/Comun/img/accessibility_hover.gif'; /* el día de mañana, renombrar el nombre del canal a legal_en, y hacer lo mismo que con el idioma legal"& strIdioma&".gif en INC_Navegacion_pruebas.asp*/ imgs['idioma_en'] = '/NR/Sites/Portal/Comun/img/espanol_hover.gif'; /* Image Object */ var objImg = []; /* */ var elm = []; /* */ var tmp = null; /* Menu Object */ var items = ["listaabout_endesa", "listacorporate_governance", "listaour_business", "listaour_commitment", "listacustomers", "listainvestors", "listapress", "listasuppliers"]; var objAct = null; function preload(e){ //if(!e) e = window.event; //event.cancelBubble = true; for(i in imgs){ objImg[i] = new Image(); objImg[i].src = imgs[i]; elm[i] = document.getElementById(i); // if (elm[i].id == actual ) // elm[i].src = objImg[elm[i].id].src; elm[i].onmouseover = function(){ tmp = this.src; this.src = objImg[this.id].src; } elm[i].onmouseout = function(){ this.src = tmp; } } for(i = 0; i < items.length; i++){ elm[i] = document.getElementById(items[i]); //elm[i].style.display = 'none'; elm[i].parentNode.onmouseover = function(){ ulObj = this.getElementsByTagName('UL'); if(objAct != null){ objAct.style.display = 'none'; } ulObj[0].onmouseout = function(){ this.style.display = 'none'; } ulObj[0].style.display = 'block'; objAct = ulObj[0]; } /* elm[i].parentNode.onmouseout = function(){ ulObj = this.getElementsByTagName('UL'); ulObj[0].style.display = 'none'; } */ } } window.onerror = function(){ return true } this.onload = preload; function abreVentana(url){ var tam_x = 520; var tam_y = 380; var pos_x = (window.screen.width-tam_x)/2; var pos_y = (window.screen.height-tam_y)/2-20; window.open(url,"", "toolbar=no,directories=no,menubar=no,scrollbars=no,location=no,status=no,resizable=no,width="+tam_x+",height="+tam_y+",left="+pos_x+",top="+pos_y); }