LoadVars... the evil of evils!

Ok. I am trying to load data from a file. This works locally, but not when uploaded! Could someone give me an idea why this is? I am using flash mx 2004, and I am not loading from another website…


function loadPage(page) {
	pageHtml = null;
	pageInt = new Object();
	loadVariablesNum(page, 0);
	pageInt = setInterval(pageLoadcheck, 10);
}
function pageLoadcheck(){
	if(pageHtml){
		pageViewer.htmlText = pageHtml;
		clearInterval(pageInt);
	}
}