묻고답하기


>작은 창을 클릭해서 뜨는 팝업창 형식으로 띄우려고 하는데요(자바스크립트 window open 인가 그거 안쓰고)
>
>그냥 띄워서 그 창을 리사이즈했는데... 스플로어 메뉴만 보이네요 ㅜ_ㅜ
>
>익스플로어 맨위에 있는 메뉴바나 툴바 같은거 다 안보이게 하려면 어케 해야되요?
>
>드림위버는 설정하는 게 있다는데 저는 나모를 쓰거든요...;;;
>
>소스라도 있으면 알려주시면 정말 고맙겠습니다 +_+

<head> </head>사이에 넣으세요...

<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>

이겁니다...