Watch out for a closure in a loop:
var info = [ "a", "b", "c", ... ];
for (var i = 0; i < 10; i++)
{
var str:String = info[i];
btn[i].onRelease = function() { getURL(str) }
}
All buttons will bring you to the last url because the closure maintains a reference to the variable str.