URL in AS3

I am using below code for URL in AS3 but its not running in browser i.e., when I click on the button it is not opening http://www.kirupa.com

function gotoPage(event:MouseEvent):void {
var targetURL:URLRequest=new URLRequest(“http://www.kirupa.com”);
navigateToURL(targetURL);
}
btn.addEventListener(MouseEvent.CLICK, gotoPage);

Please help:look: