prueba esto:
    
Código HTML:
Ver original- <meta http-equiv="refresh" content="1"> 
-         /* 
- * Parametros mandatorios 
- */ 
-     var seconds = 60; // el tiempo en que se refresca 
-     var divid = "tabla"; // el div que quieres actualizar! 
-     var nocacheurl = 'tabla.php'; 
-      
-     //var url = "tabla.php"; // el archivo que ira en el div 
-   
-     function refreshdiv(){ 
-   
-         // The XMLHttpRequest object 
-   
-         var xmlHttp; 
-         try{ 
-             xmlHttp=new XMLHttpRequest(); // Firefox, Opera 8.0+, Safari 
-         } 
-         catch (e){ 
-             try{ 
-                 xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer 
-             } 
-             catch (e){ 
-                 try{ 
-                     xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); 
-                 } 
-                 catch (e){ 
-                     alert("Tu explorador no soporta AJAX."); 
-                     return false; 
-                 } 
-             } 
-         } 
-   
-         // Timestamp for preventing IE caching the GET request 
-         var timestamp = parseInt(new Date().getTime().toString().substring(0, 10)); 
-          
-   
-         // The code... 
-   
-         xmlHttp.onreadystatechange=function(){ 
-             if(xmlHttp.readyState== 4 && xmlHttp.readyState != null){ 
-                 document.getElementById(divid).innerHTML=xmlHttp.responseText; 
-                 setTimeout('refreshdiv()',seconds*1000); 
-             } 
-         } 
-         xmlHttp.open("GET",nocacheurl,true); 
-         xmlHttp.send(null); 
-     } 
-   
-     // Empieza la función de refrescar 
-   
-     window.onload = function(){ 
-         refreshdiv(); // corremos inmediatamente la funcion 
-     } 
-      
-     function Datos(){ 
-         //var alerta= ""; 
-         //confirm(alerta ); 
-         nocacheurl='tabladatos.php'; 
-     } 
-      
-     function Voz(){ 
-         //var alerta= ""; 
-         //alert(alerta); 
-         nocacheurl = 'tablavoz.php'; 
-     } 
-     function Mintic(){ 
-         //var alerta= ""; 
-         //alert(alerta); 
-         nocacheurl = 'tablamintic.php'; 
-     } 
-     function InfoTicket(){ 
-         //var alerta= ""; 
-         //alert(alerta); 
-         nocacheurl = 'tablainfo_ticket.php'; 
-     } 
-     function SoporteOS(){ 
-         //var alerta= ""; 
-         //alert(alerta); 
-         nocacheurl = 'tablasoporte.php'; 
-           
-     } 
-     function MCF(){ 
-         //var alerta= ""; 
-         //alert(alerta); 
-         nocacheurl = 'tablamcf.php'; 
-     } 
-     function ActualizarInfo(){ 
-         //var alerta= ""; 
-         //alert(alerta); 
-         nocacheurl = 'tablaactualizar_info.php'; 
-     } 
-     function DiaAnterior(){ 
-         //var alerta= ""; 
-         //alert(alerta); 
-         nocacheurl = 'tabladia_anterior.php'; 
-     } 
-   
-      
-   
-   
- <!--alerta.gif -->   
-     <?php 
-      
-         $botones=' 
-         <div id="Principal" align="center"> 
-         <button id="MCF(" onclick="MCF()" class="tabla1">-  MCCF  </button>
 
-         <button id="Voz" onclick="Voz()" class="tabla1">-  Voz  </button>
 
-         <button id="Datos" onclick="Datos()" class="tabla1">-  Datos  </button>
 
-         <button id="Mintic" onclick="Mintic()" class="tabla1">-  Mintic  </button>
 
-         <button id="DiaAnterior" onclick="DiaAnterior()" class="tabla2">- Resumen Mes por dias </button>
 
-         <br></br><img src="images/informe.jpg" width="280" height="90" align="center"> 
-         echo $botones; 
-          
-         echo ' <div id="tabla">- ' ; 
-          
-   
-          
-     ?> 
-      
-