// JavaScript Document

// href="javascript:verAyuda('archivo.html');"

// JavaScript Document

	function idioma(id) {
		var currentStyle = document.getElementById(id).style.display;
		
		if (currentStyle == "inline") {
			document.getElementById(id).style.display = "none";
		} else {
			document.getElementById(id).style.display = "inline";
		} 
	}
	
//INCLUIR EN EL LINK:  onclick="do_menu('Menu_{ID}'); return false;"

// Otra mas facil (Solo con JQuery):  ->   onmouseover="$('#Menu_{NOVEDADES.ID_ENTRADA}').style.display = 'inline'; return false;"  onmouseout="$('#Menu_{NOVEDADES.ID_ENTRADA}').style.display = 'none'; return false;"


