view BoosterPack/.svn/text-base/index.html.svn-base @ 0:0d795f02a8bb tip

initial committ. what was I thinking?
author Robert McIntyre <rlm@mit.edu>
date Mon, 27 Sep 2010 16:57:26 -0400
parents
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:&nbsp;</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 &raquo;" 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 <!-- Begin
42 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>