Is it posible to load 2 swf's or 2 target using loadMovie when clicking one button?

So far I have this code on my button,

on(release){
	loadMovie("sample1.swf",4);
}

But Iwant to load another swf to that button, so i try this to add to the above code on my button:

on(release){
	loadMovie("sample1.swf",4)("sample2.swf",3);
}

but it didn’t work, any suggestion will be appreciated!