il segunete script mi dà errore nel loadvariable...come mai?? passo solo delle stringhe a una pagina aspx che le prende e le usa per spedire la mail ?!!?!?

non riesco a capire dove è l'errore!?


ciao e grazie


codice:
stop();
first_name_txt.tabIndex = 1;
last_name_txt.tabIndex = 2;
email_txt.tabIndex = 3;
message_txt.tabIndex = 4;
_root.clear_btn.onRelease = function() {
	status = "";
	first_name = "";
	last_name = "";
	email = "";
	messaggio = "";
};
send_btn.onRelease = function() {
	if (String(first_name) == "" || String(last_name) == "" || String(email) == "" || String(messaggio) == "") {
		status = "Completa per favore il Form...";
	} else { 
loadVariablesNum("invia.aspx?mitt="+email+"&ogg="+ogg+"&mess="first_name+" "+last_name+ "
" +messaggio", 0, "POST");
		nextFrame();
	}
};