Menu

 

 

html문서의
<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>


다음에는 플래시의 플래시버튼에서  get url액션을 이용
하여 아래와같은 주소를 삽입합니다.
위의
자바스크립트를 호출하는겁니다.

javascript:na_open_window('s', '팝업창에 들어갈 페이지
주소, 0, 0, 창의 가로사이즈(단위픽셀), 창의 세로 사이즈(단위픽셀), 0, 0, 0, 1, 1);

그대로 복사해서 삽입하세요.