// JavaScript Document if (document.images) { var boton1_off = new Image(); boton1_off.src = "../imags/choosecity2.gif"; var boton1_offE = new Image(); boton1_offE.src = "../../imags/choosecity2E.gif"; var boton2_off = new Image(); boton2_off.src = "images/red2.gif"; var boton1_on = new Image(); boton1_on.src = "../imags/choosecity4.gif"; var boton1_onE = new Image(); boton1_onE.src = "../../imags/choosecity4E.gif"; var boton2_on = new Image(); boton2_on.src = "images/red.gif"; } // Carga de imagen cuando el ratón pasa por encima function entra(boton) { if (document.images) { if(document.images[boton].src == boton1_on.src){ document.images[boton].src = boton1_off.src; }else if(document.images[boton].src == boton1_off.src){ document.images[boton].src = boton1_on.src; }else if(document.images[boton].src == boton2_on.src){ document.images[boton].src = boton2_off.src; }else if(document.images[boton].src == boton2_off.src){ document.images[boton].src = boton2_on.src; } } } function entraE(boton) { if (document.images) { if(document.images[boton].src == boton1_onE.src){ document.images[boton].src = boton1_offE.src; }else if(document.images[boton].src == boton1_offE.src){ document.images[boton].src = boton1_onE.src; }else if(document.images[boton].src == boton2_onE.src){ document.images[boton].src = boton2_offE.src; }else if(document.images[boton].src == boton2_offE.src){ document.images[boton].src = boton2_onE.src; } } } function Toggle(tabla) { tabla = document.getElementById(tabla); var label = document.getElementById("label_button"); if (tabla.style.display == "none") { tabla.style.display = "block";} else { tabla.style.display = "none"; } }