
function cargarPubliMethode(posicion) {
     if(navigator.userAgent.indexOf("Netscape/7.0") > -1) {
         bIsNS70 = true;
     }
     else {
         bIsNS70 = false;
     }
     var ie4 = document.all;
     var ns6 = document.getElementById;
     if (ie4 || ns6) {
         eval('var objOrigen = document.getElementById ? document.getElementById("publi2_' + posicion + '") : document.all.publi2_' + posicion + ';');
         eval('var objDestino = document.getElementById ? document.getElementById("publi1_' + posicion + '") : document.all.publi1_' + posicion + ';');
         if((objDestino != null) && (!bIsNS70))
                 objDestino.appendChild(objOrigen);
         else
                 objOrigen.style.display = "none";
     }
   }
