Ничё не пойму!
я же говорю go.txt...
Вот этот скрипт грузит правильно, но он ещё и отправляет!
Подскажите, что сделать, чтобы переработать егов просто грузящий, спасибо!

Код:
_root.chat.Button0.onRelease = function() {
if (_root.chat.TextInput0.text != "") {
go = new LoadVars();
gg = new LoadVars();
gg.transfer = true;
gg.nam = l.TextInput1.text;
gg.mes = _root.chat.TextInput0.text;
gg.col = _root.c;
trace(_root.c+"||"+gg.col);
gg.id = Math.random(999);
gg.sendAndLoad("chat.php", go);
go.onLoad = function(success) {
if (success) {
_root.chat.TextInput0.text = "";
_root.chat.TextArea0.text = go.txt;
_root.chat.TextArea0.vPosition = _root.chat.TextArea0.maxVPosition;
} else {
_root.chat.TextArea0.text = "Ошибка сервера!<br>Попробуйте обновить страничку!";
}
};
}
};