home *** CD-ROM | disk | FTP | other *** search
- <PUBLIC:ATTACH EVENT="onmouseover" HANDLER="Hilite" />
- <PUBLIC:ATTACH EVENT="onmouseout" HANDLER="Restore" />
- <PUBLIC:ATTACH EVENT="onclick" HANDLER="Choose" />
-
- <script language="JavaScript">
- function Hilite() {
- theNum = parseInt(element.num);
- if (theNum == chosenAlt) return;
- element.style.backgroundImage = "url('images/radiobtn_1.gif')";
- }
-
- function Restore() {
- theNum = parseInt(element.num);
- if (theNum == chosenAlt) return;
- element.style.backgroundImage = "url('images/radiobtn_0.gif')";
- }
-
- function Choose() {
-
- theNum = parseInt(element.num);
- if (theNum == chosenAlt) return;
- for (var i=0; i<LinkBtn.length; i++) {
- LinkBtn[i].style.backgroundImage = "url('images/radiobtn_0.gif')";
- }
- element.style.backgroundImage = "url('images/radiobtn_2.gif')";
- chosenAlt = theNum;
-
- showLink(element.url);
- }
- </script>
-