Mercurial > boosterpack
view index.html @ 10:3b52ac950753 boosterpack tip
going to try to fix this thing
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 27 Sep 2010 17:24:06 -0400 |
parents | 8c6d2ce90677 |
children |
line wrap: on
line source
1 <html>2 <head>3 <title>Pokèmon Booster Pack Generator</title>4 <link href="./style.css" rel="stylesheet" type="text/css">5 </head>7 <body>8 <div id="header">9 <h1>Pokèmon Draft Battle!!</h1>11 <form id="radiobuttons">12 <h3>Pick a Set: </h3>13 <input TYPE="radio" onclick="change_rules(['radio1'], ['result'] );" ID="radio1" NAME="radio1" VALUE="Base Set"><a href="#">Base Set</a>14 <input TYPE="radio" onclick="change_rules(['radio1'], ['result'] );" ID="radio1" NAME="radio1" VALUE="Jungle"><a href="#">Jungle</a>15 <input TYPE="radio" onclick="change_rules(['radio1'], ['result'] );" ID="radio1" NAME="radio1" VALUE="Fossil"><a href="#">Fossil</a>16 <input TYPE="radio" onclick="change_rules(['radio1'], ['result'] );" ID="radio1" NAME="radio1" VALUE="Team Rocket"><a href="#">Team Rocket</a>17 <input TYPE="radio" onclick="change_rules(['radio1'], ['result'] );" ID="radio1" NAME="radio1" VALUE="Gym Heroes"><a href="#">Gym Heroes </a>18 <input TYPE="radio" onclick="change_rules(['radio1'], ['result'] );" ID="radio1" NAME="radio1" VALUE="Gym Challenge"><a href="#">Gym Challenge </a>20 <input type="button" id="b2" value="Generate Booster Pack »" onclick="gen_pack(['NO_CACHE'], ['out1']);">21 </form>22 </div>24 <div id="out1"></div>25 <div id="footer">26 <h3>Current Settings:</h3>27 <div id="result">These are no current settings</div>28 </div>33 <b>Rules:</b><br>36 <SCRIPT LANGUAGE="JavaScript">37 <!-- Idea by: Nic Wolfe -->38 <!-- This script and many more are available free online at -->39 <!-- The JavaScript Source!! http://javascript.internet.com -->41 <!-- Begin42 function popUp(URL) {43 day = new Date();44 id = day.getTime();45 eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=356,height=467,left = 476,top = 197');");46 }47 // End -->48 </script>54 </body>55 </html>