<input type="button" name="cliente" value="CLIENTE" onClick="PAG_CLIENTES()"> pero en esre caso el menu no tienen button, me entienden?
, aka dejo el codigo
menu desplegable hecho con css
Código PHP:
   <div id="superior">
<ul>
  <li class="nivel1"><a href="#" class="nivel1">Productos</a>
    <ul class="nivel2">
        <li><a href="#" >Nuevo Producto</a></li>
        <li><a href="#">Buscar Producto</a></li>
    </ul>
  </li>
 
</ul>
    
</div>
 
<div id="contenedor">contenedor</div> 
    quiero cargarlo en el div contenedor
script ajax
Código PHP:
   //******************************************************************
//Funcion para la conexion ajax
//******************************************************************
function nuevoAjax(){
    var xmlhttp=false;
     try {
         xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
     } catch (e) {
         try {
             xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
         } catch (E) {
             xmlhttp = false;
         }
      }
 
    if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
         xmlhttp = new XMLHttpRequest();
    }
    return xmlhttp;
}
 
//******************************************************************
// FUNCION QUE CARGA EL FORMULARIO DE INGRESO DE PRODUCTOS
//******************************************************************
function  ing_prod()
{
     
    
    var central;
 
    central = document.getElementById('contenedor');
    ajax=nuevoAjax();
    ajax.open("GET", "productos/ing_producto.php?cargar",true);
    
    ajax.onreadystatechange=function() 
    { 
       
        
    
        if (ajax.readyState==4) 
        {  
            central.innerHTML = ajax.responseText
            
        }
        
               
        
    }
    ajax.send(null)
} 
    
 
