"_self" not working

Hello,
I am new to flash. I have been making some linking banners and have run into a problem. The code i have been using works fine:

on (release) {

//Goto Webpage Behavior
getURL("http://www.example.com","_blank");
//End Behavior

}

But when i modify it to open in the same page it looses all functionality:

on (release) {

//Goto Webpage Behavior
getURL("http://www.example.com","_self");
//End Behavior

}

When this code is used the link doesn’t work.
Please Help
Thanks

-Nebulla