External Image as New Tab? [Click to load an Image]

Hello all,
I am really new to actionscript 3.0, so barely with me. I would like to set my buttons to load external images within a new tab of the browser as I also have the swf file loaded within a html file. I have tried “Click to Load/Unload SWF or Image”. Here’s my code:

btn1.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_2);

var fl_Loader_2:Loader;
var fl_ToLoad_2:Boolean = true;

function fl_ClickToLoadUnloadSWF_2(event:MouseEvent):void
{
if(fl_ToLoad_2)
{
fl_Loader_2 = new Loader();
fl_Loader_2.load(new URLRequest(“image/pic1.jpg”));
addChild(fl_Loader_2);
}
else
{
fl_Loader_2.unload();
removeChild(fl_Loader_2);
fl_Loader_2 = null;
}
fl_ToLoad_2 = !fl_ToLoad_2;
}

Of course:
btn1 is my button,
pic1.jpg is my external image
using Code Snippets

How do I add _Blank commend to this, or enable _Blank / New tab command to “MouseEvent.CLICK”?

Thank you for your time!