imagemapsterなんてのを使って調子に乗ってたのだが
外部サイトへのリンクを新しいウィンドウを開いてみせようと
<area shape="rect" coords="0,0,100,100" href="http://example.com" target="_blank" title="example" />
なんて記述しても、Firefox等では新しいウィンドウを開いてくれないよね。
仕方ないので
<area shape="rect" coords="0,0,100,100" href="javascript:window.open('http://example.com', '_blank');void(0);" title="example" />
なんてことをして、無理やり解決してみた。