Ver Mensaje Individual
  #8 (permalink)  
Antiguo 16/12/2005, 10:25
Avatar de richardinj
richardinj
 
Fecha de Ingreso: enero-2005
Ubicación: Ciber Espacio
Mensajes: 2.180
Antigüedad: 19 años, 3 meses
Puntos: 11
cargar_noticia();
function cargar_noticia()
{
noticia = new LoadVars();
noticia.load("flash_noticia.php");
contenido.htmlText = "Cargando Contenido...";
noticia.onLoad = function(succes)
{
if (succes) {
contenido.htmlText = this["contenido_noticia"];
} else{ contenido.htmlText ="Error"; }
}

}