Popup works in Mozilla, but not IE

I have a image that needs to open a new window. I want this window to be automatically resized too. Now, here is the code I have. It works in Mozilla Firefox, but not IE.


<a href="mp3player.html" onClick="window.open('mp3player.html', 'musicplayer', 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizable=no, scrollbars=no, width=315, height=145'); return false" title="Launch Music Player">
<img src="images/launchmediaplayer.jpg" name="player" width="300" height="60" border="0" id="player" onMouseOver="this.src='images/launchmediaplayerALT.jpg';" onMouseOut="this.src='images/launchmediaplayer.jpg';" />
</a>

Help would be appreciated, thanks!