以下のコードを使用してツールバーなしで新しいウィンドウを開こうとしていますが、ツールバー付きの新しいウィンドウが開きます(少なくともIEでは)。私は何が間違っているのですか?
<a href="http://www.google.com" onclick="popupWindow(this.href)" target="_blank"><img src="/myImage"/><a>
function popupWindow(url)
{
window.open(url,"MyWindow","config='toolbar=no, menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no'");
}