Launching Window .onload

Hello,
I am trying to create a window launcher that will work with url variable.

I have created a page such as this in javascript but alas, popup blockers will defeat it.
To test it out go to www.ageofeternity.com/magelo/magelo.htm?26510 (make sure allow http1.1 through proxy settings is checked)

As you can see, the page works well if you add that domain to allow pop-ups. I am turning to flash to see if I can’t get around the blocker issue (and around the click to activate with swfobject). Does flash allow you to do that since flash is creating the new window?


Here is whats done so far:

_root.onLoad = function(launchwindow){
getURL("javascript:launch(http://eq.magelo.com/profile/26510)");
}

When I export the movie, it works locally and pops up a bad url of course there is no javascript:launch(http/etc) on the web. But when I put it on the site with this as the launching page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Magelo Launcher</title>
<script type="text/javascript">
function launch (page) {
openwin = this.open(page,"Profile",& '#34';location=no,scrollbars=yes,toolbar=no,menubar=no,resizable=no,width='600',height='500',top='20',left='20'")}
</script>
</head>
<body>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="550" height="400" title="launchflash">
  <param name="movie" value="test2.swf" />
  <param name="quality" value="high" />
  <embed src="test2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="550" height="400"></embed>
</object>
</body>
</html>

I am hoping for a solution that many users can use to link on forum signatures to create the authentic look. If you use just URL links, you get toolbars, and other junk in the way that distorts the profile.

Any assistance would be appreciated =)