Load text problems

Hi!

Is it possible to load from 1 file (test.txt) more than 1 variable.
"
loadText = new loadVars();
loadText.load(“test.txt”);

loadText.onLoad = function() {
t1.text = this.t1;
t2.text = this.t2;
};
"

This is my code. And i have 2 fields and text load me only in 1 field.

In file tets.txt is
"
t1=2000
t2=1500
"

Can pleas someone help me