Senocular's xml driven drop down menu tute

okay, I’ve never felt like a bigger idiot. I’m slowly trying to get my pea sized brain wrapped around using xml in flash.

my question is how do i convert what senocular has here:

Actions = Object();
Actions.gotoURL = function(urlVar){
	getURL(urlVar, "_blank");
};
Actions.message = function(msg){
	message_txt.text = msg;
};

to incorporate loadMovie instead of getURL?
I’m getting stuck with the "function(urlVar) part. what is that parameter
he’s passing (urlVar) here?

I want to have something like:

Actions = Object();
Actions.loadswf = function(?what the heck do i put here?){
	_root.container.loadMovie("monkey.swf");
};
Actions.message = function(msg){
	message_txt.text = msg;
};

arrrggghh!!! my ignorance hurts!