Anyone know why the MM_OpenBrWindow function doesn't work properly in IE7? In FF everything in beautiful, in IE7 it always just opens a new tab, which pretty much defeats the purpose.
Example at
www.wattproductions.com/db/new_client_form.php
Click the button that says "Don't know your AE id?" and you'll see the result of the script... the code is written as:
Code:
<head>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body>
<input name="revealID" type="button" id="revealID" onClick="MM_openBrWindow('reveal_id.php','AEid','width=320,height=310')" value="Don't Know Your AE id?">
</body>
Anyone have any ideas on how to make IE obey the rules and play nice?
|