Please see the following html codes for my own index.html as follows:
<html>
<head>
<title>My Own Website</title>
</head>


<frameset rows="80,20,*" frameborder="0" border="0" framespacing="0">
<frame name="head" src="head.html" border="0" marginheight="0" marginwidth="0" scrolling="auto">
<frame name="main1" src="main1.html" border="0" marginheight="0" marginwidth="0" scrolling="auto">

<frameset cols="400,*" frameborder="0" border="0" framespacing="0">
<frame name="main2" src="main2.html" marginheight="0" marginwidth="0" scrolling="auto">
<frame name="main" src="main.html" marginheight="0" marginwidth="0" scrolling="auto">
</frameset>



<noframes>

</noframes>

</frameset>
</html>
But main2.html and main.html contents are use that is why I am getting two scroll bars on my index.html but I want the only one scroll bar that moves down at a time when the content of the main.html scrol bar moves down. So that please help me to write the html code for the above index.html.
I want to create only in html codes with frames only.....Is it possible?