jackjuma12 0 Newbie Poster

Can somebody help me here plz. I have created a popup login window (resized) jsp from index page. On clicking login, the page is directed to homepage.jsp after verification using servlet. I want the subsequent pages to have the original size not the popup window size. How can I do this? Any help

I have used javascript to resize

<script  type="text/javascript">
`        function LoginOpen(){`
          popupWindow =window.open("login.jsp", "Login", "width = 400, height=300");
          popupWindow.moveTo(600,200);
        }
        </script>

Login page name is login.jsp

servlet name is Checkservlet.java

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.