cleaning and moving a lot of files.
[feisty_meow.git] / webby / javascript / gruntose / gruntomote.js
1
2 <script language="JavaScript1.2">
3 <!--
4
5 ////////////////////////////////////////////////////////////////////////////
6
7 // Author: Fred T. Hamster.  Open Source; distributed under GNU Public License.
8
9 ////////////////////////////////////////////////////////////////////////////
10
11 // creates the remote control window.
12
13 function launch_remote() {
14
15 control = window.open("", "Gruntomote", "height=360,width=420,resizable=yes");
16
17 // href specified later for bug in netscape2.
18
19 control.location.href = "gruntose_remote_control.html";
20
21 // opener must be set for a different bug in netscape.
22
23 if (control.opener == null) control.opener = window;
24
25 }
26
27 //-->
28 </script>