<html>
        <head>
            <title>The greatest MMO you will ever play</title>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
        </head>
        <body>
            <script>
                function buyStuffWithPoints()
                {
                 var points=prompt("How many points have you earned?");
                 document.write("<p>Buy your items now and prepare for battle! Choose wisely.<p>" );
                 document.write("<p><img src = 'sword.jpg'/><p>");
                 document.write("<p><img src = 'Waterskin.jpg' /><p>");
                 document.write("<p><img src = 'charm.jpg' /><p>");
                 document.write("<p><img src = 'Phone.jpg' /><p>");
                }           
            </script>
            <input type="button" onclick="buyStuffWithPoints()" value="Start!" />
            <div>
           <input type="button" onclick="buyStuffWithPoints()" value="Buy Sword(2500)!" />
            </div>
        </body>
    </html>
So currently what happens is when I run it, it prompts me to enter amount of points, then it shows two buttons, "Start!" and "Buy Sword(2500)!". Then after clicking start, the next page shows 4 pictures of the items to buy.
What I want to happen is, after I enter the amount of points, I only want it to show the "Start!" button. Then on the NEXT page, the same page where the pictures show up, I want to show the "Buy Sword" button.
I understand why it's doing this, I just have no idea how to change it. Can anyone help me with this?
 
     
    