I have to enabling or disabling for some reasons.
some pages require enabled scroll, and some pages require scroll-disabled frame.
index.html
<html xmlns="<head>
<title>HCC HSIMS</title>
</head>
<frameset cols="161,*" rows="*" frameborder="no" border="0" framespacing="0">
<frame src="left.html" name="leftFrm" scrolling="No" noresize="noresize" id="leftFrm" title="leftFrm" />
<frameset rows="80,*" frameborder="no" border="0" framespacing="0">
<frame src="top.html" name="topFrm" scrolling="No" noresize="noresize" id="topFrm" title="topFrm"/>
<frame src="main.html" name="mainFrm" id="mainFrm" title="mainFrm" scrolling="No"/>
</frameset>
</frameset>
<noframes><body>
</body>
</noframes></html>
top.html
<html xmlns="<head>
<title>Untitled Document</title>
</head>
<body>
top.html
</body>
</html>
left.html
<html xmlns="<head>
<title>Untitled Document</title>
</head>
<body>
left.html
</body>
</html>
main.html
<html xmlns="<head>
<title>Untitled Document</title>
</head>
<script>
function enableScroll(){
parent.document.getElementById("mainFrm").scrolling = 'yes';
}
</script>
<body onload="enableScroll();">
main.html
</body>
</html>
some pages require enabled scroll, and some pages require scroll-disabled frame.
index.html
<html xmlns="<head>
<title>HCC HSIMS</title>
</head>
<frameset cols="161,*" rows="*" frameborder="no" border="0" framespacing="0">
<frame src="left.html" name="leftFrm" scrolling="No" noresize="noresize" id="leftFrm" title="leftFrm" />
<frameset rows="80,*" frameborder="no" border="0" framespacing="0">
<frame src="top.html" name="topFrm" scrolling="No" noresize="noresize" id="topFrm" title="topFrm"/>
<frame src="main.html" name="mainFrm" id="mainFrm" title="mainFrm" scrolling="No"/>
</frameset>
</frameset>
<noframes><body>
</body>
</noframes></html>
top.html
<html xmlns="<head>
<title>Untitled Document</title>
</head>
<body>
top.html
</body>
</html>
left.html
<html xmlns="<head>
<title>Untitled Document</title>
</head>
<body>
left.html
</body>
</html>
main.html
<html xmlns="<head>
<title>Untitled Document</title>
</head>
<script>
function enableScroll(){
parent.document.getElementById("mainFrm").scrolling = 'yes';
}
</script>
<body onload="enableScroll();">
main.html
</body>
</html>