You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
507 B

3 years ago
  1. <html>
  2. <head>
  3. <script>
  4. function isNS7() {
  5. return ((navigator.appName.indexOf("Netscape") >= 0) && (parseFloat(navigator.appVersion) >= 5) ) ? true : false;
  6. }
  7. function init(){
  8. if( isNS7() ){
  9. document.location.href="newappletref.htm";
  10. }
  11. document.location.href="appletref.htm";
  12. }
  13. </script
  14. </head>
  15. <body onload="javascript:init()" bgcolor="#ffffff" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
  16. </body>
  17. </html>