JavaScript を使用して新しいウィンドウを作成し、サーバーに存在する画像を表示しています。ウィンドウは正常に開き、Firefox では画像が表示されますが、Chrome では表示されません。何が間違っている可能性がありますか?
function wopen(){
nwin = window.open('','_blank','directories=no,height=600,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,width=800,top=10,left=60');
nwin.document.open();
var msg = "<html><head><title>Test page</title></head><body><img src='http://www.mywebsite.com/images/logo.jpg' border='0' height='20' width='20'></body></html>"
nwin.document.write(msg);
nwin.document.close();
}
この関数を呼び出すと、ウィンドウは開きますが、クロムでは画像が表示されませんが、Firefox では正しく表示されます。ここで何が問題なのですか?