// 좌측 프레임에 들어갈 코드..
// 오른족 프레임 이름은 right 로 설정
<SCRIPT LANGUAGE="JavaScript">
<!---Edited by JASKO-->
<!---Web Site : http://www.javascript.co.kr-->
function menu(form) {
if(form.url.selectedIndex != 0)
parent.right.location = form.url.options[form.url.selectedIndex].value
// parent.right.location = parent(프레임셋문서).right(오른쪽 프레임 이름)
}
</SCRIPT>
|
|