function cargar_menu(){

            var htmlmenu;

            htmlmenu='<table width=100% cellpadding=5 height=100%>';
            
            //CÓMO FUNCIONA
            htmlmenu+='<tr><td class=general bgcolor=#D8D8CE height=20 style="background-repeat:no-repeat" background="img/fondo_celda_menu_primera.jpg">';
            htmlmenu+='&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>CÓMO FUNCIONA</b>';
            htmlmenu+='</td></tr>';
            
		            //CREAR CONTENIDO
		            htmlmenu+='<tr><td class=general bgcolor=#EBEBEB height=20 valign=top style="background-repeat:repeat-x">';
		            htmlmenu+='<a href="comofunciona_crearcontenido.htm">• Crear Contenido</a>';
		            htmlmenu+='</td></tr>';
		            
		            //DISTRIBUCIÓN
		            htmlmenu+='<tr><td class=general bgcolor=#EBEBEB height=20 valign=top style="background-repeat:repeat-x">';
		            htmlmenu+='<a href="comofunciona_distribucion.htm">• Distribución</a>';
		            htmlmenu+='</td></tr>';
		            
		            //LÓGICA DE NEGOCIO
		            htmlmenu+='<tr><td class=general bgcolor=#EBEBEB height=20 valign=top style="background-repeat:repeat-x">';
		            htmlmenu+='<a href="comofunciona_logicadenegocio.htm">• Lógica de Negocio</a>';
		            htmlmenu+='</td></tr>';
		            
		            //AUDITORÍAS
		            htmlmenu+='<tr><td class=general bgcolor=#EBEBEB height=20 valign=top style="background-repeat:repeat-x">';
		            htmlmenu+='<a href="comofunciona_auditorias.htm">• Auditorias</a>';
		            htmlmenu+='</td></tr>';
		            		            
		            //SUPERVISIÓN Y ALARMAS
		            htmlmenu+='<tr><td class=general bgcolor=#EBEBEB height=20 valign=top style="background-repeat:repeat-x">';
		            htmlmenu+='<a href="comofunciona_supervisiondealarmas.htm">• Supervisión y Alarmas</a>';
		            htmlmenu+='</td></tr>';
		            
		            //INTERFACE WEB
		            htmlmenu+='<tr><td class=general bgcolor=#EBEBEB height=20 valign=top style="background-repeat:repeat-x">';
		            htmlmenu+='<a href="comofunciona_interfaceweb.htm">• Interface Web</a>';
		            htmlmenu+='</td></tr>';
		            
		            //ENTRETENIMIENTO
		            htmlmenu+='<tr><td class=general bgcolor=#EBEBEB height=20 valign=top style="background-repeat:repeat-x">';
		            htmlmenu+='<a href="comofunciona_entretenimiento.htm">• Entretenimiento</a>';
		            htmlmenu+='</td></tr>';
            
            //FIN
            htmlmenu+='<tr><td class=general bgcolor=#EBEBEB valign=top style="background-repeat:repeat-x" background="img/fondonoticias.jpg">';
            htmlmenu+='&nbsp;';
            htmlmenu+='</td></tr>';
            
            htmlmenu+='</table>';
            
            return htmlmenu;

}
