16/12/2005, 10:25
|
| | | Fecha de Ingreso: enero-2005 Ubicación: Ciber Espacio
Mensajes: 2.180
Antigüedad: 19 años, 9 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"; }
}
} |