Displaying data from an external source

I am having a problem with the tutorial here.
When I am creating my previewing my webpage it says in the in the space where the data should be loaded: _level0.name, _level0.email, _level0.location

When i upload it to my site along with the data.txt it displays “undefined” in each of the spots.

My website is here: Tucker’s World under Contact Me

Can anyone help me?

loadText = new LoadVars();
loadText.load("data.txt");
loadText.onLoad = function() {
	name.text = this.name;
	email.text = this.email;
	location.text = this.location;
};

try adding “_root.”

loadText = new LoadVars();
loadText.load("data.txt");
loadText.onLoad = function() {
	[color=red]_root.[/color]name.text = this.name;
	[color=red]_root.[/color]email.text = this.email;
	[color=red]_root.[/color]location.text = this.location;
};

Sorry, this didn’t work either, is their anything else you think that would work? Should I mention I am using MX 2004?

try taking off this. on the right bit…