come si fa ad 'unloadare' il testo caricato ?

codice:
System.UseCodepage = true;
dati=new LoadVars();
dati.path = this;
dati.onLoad=function(success)
{
	if (success){
		this.path.testo_txt.html=true;
		this.path.testo_txt.htmlText =this.testo;
	}else{
		this.path.testo_txt.text="File non Trovato";
	}
};
dati.load("http://www.miosito.com/weblog/luca.asp");
stop();