Hello All, I have a <div> with a fixed width and height that I use as a window for requiring othe pages using PHPs' require() command. I have three different pages at the moment that are contained in that <div> and their display and visibility properties are toggled off and on with javascript. I have the overflow property of the <div> set to auto so I can scroll the pages thru the <div>s' window. And their position property is set to absolute so each page is on top of the other. Now, let's say that I am viewing page1 and I have to scroll the <div>s' window in order to view the whole page. Now let's say I have scrolled the page and I decide to view page2 instead, so I click on the page2 button and I have page2 in view, but the position of the scroll doesn't reset back to 0,0. It stays where it was set from the first page. My question is : how do you control the <div>s' inner windows' position with javascript or PHP or ?