All I truly need is a good example of an embed that serves an odd purpose. I'm using SWFObject as well as SWFAddress (for deeplinking) and for the oddest reasons (read: I can't figure it out) the way clicks are being handled - some are using externalInterface and navigateToURL - is just not the same between Safari, IE6, IE7 and FF 2.x.

Certain links now will only work "some of the time", while others will work just great. But some - IE6 and Safari is guilty of this one - where it will refresh the website/app like it has received an a href target of "_blank" or disregard the "_self"... so it refreshes and doesn't load meanwhile IE7 and FF 2.x work just fine.

Anyway, it seems like I'm having other issues around JavaScript sandbox violations in a few places... and my embed method for SWFObject isn't doing what I need...

How can I make this portion better? The code is below:
Code:
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="scripts/swfobject/swfobject.js"></script>
<script type="text/javascript" src="scripts/swfaddress/swfaddress.js"></script>
<title></title>
<style>
body { margin: 0px; overflow:hidden }
</style>
		<script type="text/javascript">
			var flashvars = {};
			var params = {};
			params.quality = "high";
			params.wmode = "opaque";
			params.bgcolor = "#ffffff";
			params.allowscriptaccess = "always";
			var attributes = {};
			attributes.id = "Web";
			attributes.name = "Web";
			attributes.align = "middle";
			swfobject.embedSWF("Web.swf", "Web", "100%", "100%", "9.0.0", "scripts/swfobject/expressInstall.swf", flashvars, params, attributes);
		</script>
</head>
<body scroll="no">
		<div id="Web">

			<a href="http://www.adobe.com/go/getflashplayer">
				<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
			</a>
		</div>
</body>
</html>