Help Needed w/ mc links

This is my first time in this forum. I am creating a framed website in Dreamweaver, but I made my navigation menu in Flash w/ AS 3. The frameset has two frames, one is called header and the other is called content. I want the flash menu to stay in the header frame (which it does) and I want the links to change the page in the content frame.

I tried targeting the content frame in my function that changes pages, but for some reason it continues to open the new page (link) in a new window. Any help would be appreciated. The function code is below…

function newPage(e:MouseEvent):void
{
new Tween(highlight_mc,“x”,Strong.easeOut,highlight_mc.x,e.currentTarget.x,12,false);
currentPage = MovieClip(e.currentTarget);
if (currentPage == home_mc)
{
var page:URLRequest = new URLRequest(“home.html”);
}
else if (currentPage == teams_mc)
{
var page:URLRequest = new URLRequest(“teams.html”);
}
else if (currentPage == blog_mc)
{
var page:URLRequest = new URLRequest(“http://www.lindberghhoops.org/blogs”);
}
else if (currentPage == staff_mc)
{
var page:URLRequest = new URLRequest(“staff.html”);
}
else if (currentPage == jfb_mc)
{
var page:URLRequest = new URLRequest(“jfb.html”);
}
else if (currentPage == info_mc)
{
var page:URLRequest = new URLRequest(“info.html”);
}
else if (currentPage == media_mc)
{
var page:URLRequest = new URLRequest(“media.html”);
}
else if (currentPage == events_mc)
{
var page:URLRequest = new URLRequest(“events.html”);
}
else if (currentPage == history_mc)
{
var page:URLRequest = new URLRequest(“history.html”);
}
else if (currentPage == alumni_mc)
{
var page:URLRequest = new URLRequest(“alumni.html”);
}
else if (currentPage == camps_mc)
{
var page:URLRequest = new URLRequest(“camps.html”);
}
else if (currentPage == links_mc)
{
var page:URLRequest = new URLRequest(“links.html”);
}
else if (currentPage == contact_mc)
{
var page:URLRequest = new URLRequest(“contact.html”);
}
navigateToURL(page, “content”);
}