묻고답하기

노프래임 에서 아래와 같이 인클루트를 하고 가운데 열릴 그림 파일에 영역을 주어 새창띠우기를 했습니다..
서버에 올린후  그 영역에 마우스 클릭이 안됩니다.  어떻게 해결해야 하는지 궁금해요..

<script language="JavaScript">
<!--
function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

// -->
</script>

<? include "../head3.html" ?>
<table border="0">

    <td><img src="../image/tourmap.jpg" width="830" height="591" border="0" usemap="#ImageMap1">
        


</td>
</tr>

</table>'
<? include "../foot3.html" ?><map name="ImageMap1">
<area shape="rect" coords="333, 46, 366, 60" href="javascript:na_open_window('win', '../image/yong.jpg', 0, 0, 500, 1000, 0, 0, 0, 0, 0);">
</map>


읽어주셔서 감사합니다..