프레임셋
<html>
<head>
<title></title>
</head>
<frameset cols="*, 0%" border="0">
    <frame src="1.html" name="top" noresize scrolling="no" marginwidth="0"  marginheight="0" border=1>
    <frame src="2.html" name="content" scrolling="auto" marginwidth="0"  marginheight="0" border=1>
</frameset>
</html>

프레임 좌측 페이지
<html>
<head>
<title></title>
<script language="javascript1.2">
var bexp=0;
function expand_right() {
if (bexp==0) {
   top.document.body.cols = bexp +"*,20%";
   bexp = 1
} else {
   top.document.body.cols = bexp +"*,0%";
   bexp = 0
}
}
</script>
</head>
<body>
<a href='javascript:expand_right();' onfocus="this.blur()" class="tmnu">Show</a>
</body>
</html>

프레임 우측페이지는 적용할 페이지를 사용하세요.
Posted by 알 수 없는 사용자
,