home *** CD-ROM | disk | FTP | other *** search
/ Digit Magazine 1999 December / cDigit issue 18 - December 1999.iso / mac / start for Internet Explorer < prev    next >
Encoding:
Text File  |  1999-04-16  |  10.4 KB  |  259 lines  |  [TEXT/MSIE]

  1. <!-- created by interface new media © 1999 -->
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  3.  
  4. <html>
  5. <head>
  6.         <title>CDigit</title>
  7. </head>
  8.  
  9. <SCRIPT LANGUAGE="JavaScript">
  10. <!--
  11.  
  12. function Is ()
  13. {   // convert all characters to lowercase to simplify testing
  14.     var agt=navigator.userAgent.toLowerCase()
  15.  
  16. //BROWSER VERSION-------------------------------------------------------
  17.     
  18.     this.major = parseInt(navigator.appVersion)
  19.     this.minor = parseFloat(navigator.appVersion)
  20.  
  21.     this.nav  = ((agt.indexOf('mozilla')!=-1) && ((agt.indexOf('spoofer')==-1)
  22.                 && (agt.indexOf('compatible') == -1)))
  23.     this.nav2 = (this.nav && (this.major == 2))
  24.     this.nav3 = (this.nav && (this.major == 3))
  25.     this.nav4 = (this.nav && (this.major == 4))
  26.     this.nav4up = this.nav && (this.major >= 4)
  27.     this.navonly = (this.nav && (agt.indexOf(";nav") != -1))
  28.  
  29.     this.ie   = (agt.indexOf("msie") != -1)
  30.     this.ie3  = (this.ie && (this.major == 2))
  31.     this.ie4  = (this.ie && (this.major == 4))
  32.     this.ie4up  = this.ie  && (this.major >= 4)
  33.  
  34.     //PLATFORM----------------------------------------------------------------------
  35.    
  36.     this.win   = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) )
  37.     // NOTE: On Opera 3.0, the userAgent string includes "Windows 95/NT4" on all
  38.     //        Win32, so you can't distinguish between Win95 and WinNT.
  39.     this.win95 = ((agt.indexOf("win95")!=-1) || (agt.indexOf("windows 95")!=-1))
  40.  
  41.     // is this a 16 bit compiled version?
  42.     this.win16 = ((agt.indexOf("win16")!=-1)
  43.                || (agt.indexOf("16bit")!=-1) || (agt.indexOf("windows 3.1")!=-1)
  44.                || (agt.indexOf("windows 16-bit")!=-1) )  
  45.  
  46.     this.win31 = (agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) ||
  47.                  (agt.indexOf("windows 16-bit")!=-1)
  48.  
  49. // - NOTE: Reliable detection of Win98 may not be possible. It appears that:
  50. // - On Nav 4.x and before you'll get plain "Windows" in userAgent.
  51. // - On Mercury client, the 32-bit version will return "Win98", but
  52. // - the 16-bit version running on Win98 will still return "Win95".
  53.  
  54.  
  55.     this.win98 = ((agt.indexOf("win98")!=-1)||(agt.indexOf("windows 98")!=-1))
  56.     this.winnt = ((agt.indexOf("winnt")!=-1)||(agt.indexOf("windows nt")!=-1))
  57.     this.win32 = this.win95 || this.winnt || this.win98 || 
  58.                  ((this.major >= 4) && (navigator.platform == "Win32")) ||
  59.                  (agt.indexOf("win32")!=-1) || (agt.indexOf("32bit")!=-1)
  60.  
  61.     this.os2   = (agt.indexOf("os/2")!=-1) 
  62.                  || (navigator.appVersion.indexOf("OS/2")!=-1)  
  63.                  || (agt.indexOf("ibm-webexplorer")!=-1)
  64.  
  65.     this.mac    = (agt.indexOf("mac")!=-1)
  66.     this.mac68k = this.mac && ((agt.indexOf("68k")!=-1) || 
  67.                                (agt.indexOf("68000")!=-1))
  68.     this.macppc = this.mac && ((agt.indexOf("ppc")!=-1) || 
  69.                                (agt.indexOf("powerpc")!=-1))
  70.  
  71.     this.sun   = (agt.indexOf("sunos")!=-1)
  72.     this.sun4  = (agt.indexOf("sunos 4")!=-1)
  73.     this.sun5  = (agt.indexOf("sunos 5")!=-1)
  74.     this.suni86= this.sun && (agt.indexOf("i86")!=-1)
  75.     this.irix  = (agt.indexOf("irix") !=-1)    // SGI
  76.     this.irix5 = (agt.indexOf("irix 5") !=-1)
  77.     this.irix6 = ((agt.indexOf("irix 6") !=-1) || (agt.indexOf("irix6") !=-1))
  78.     this.hpux  = (agt.indexOf("hp-ux")!=-1)
  79.     this.hpux9 = this.hpux && (agt.indexOf("09.")!=-1)
  80.     this.hpux10= this.hpux && (agt.indexOf("10.")!=-1)
  81.     this.aix   = (agt.indexOf("aix")  !=-1)      // IBM
  82.     this.aix1  = (agt.indexOf("aix 1")  !=-1)    
  83.     this.aix2  = (agt.indexOf("aix 2")  !=-1)    
  84.     this.aix3  = (agt.indexOf("aix 3")  !=-1)    
  85.     this.aix4  = (agt.indexOf("aix 4")  !=-1)    
  86.     this.linux = (agt.indexOf("inux")!=-1)
  87.     this.sco   = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1)
  88.     this.unixware = (agt.indexOf("unix_system_v")!=-1) 
  89.     this.mpras    = (agt.indexOf("ncr")!=-1) 
  90.     this.reliant  = (agt.indexOf("reliantunix")!=-1)
  91.     this.dec   = (agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) 
  92.            || (agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) 
  93.            || (agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1) 
  94.     this.sinix = (agt.indexOf("sinix")!=-1)
  95.     this.freebsd = (agt.indexOf("freebsd")!=-1)
  96.     this.bsd = (agt.indexOf("bsd")!=-1)
  97.     this.unix  = (agt.indexOf("x11")!=-1) || this.sun || this.irix || this.hpux || 
  98.                  this.sco ||this.unixware || this.mpras || this.reliant || 
  99.                  this.dec || this.sinix || this.aix || this.linux || this.freebsd
  100.  
  101.     this.vms   = (agt.indexOf("vax")!=-1) || (agt.indexOf("openvms")!=-1)
  102.     
  103.     
  104.     this.other = this.unix || this.vms
  105.     
  106. }
  107.  
  108.  
  109. var is;
  110. var isIE3Mac = false;
  111. // this section is designed specifically for IE3 for the Mac 
  112.  
  113. if ((navigator.appVersion.indexOf("Mac")!=-1) && (navigator.userAgent.indexOf("MSIE")!=-1) && (parseInt(navigator.appVersion)==3)) 
  114.        isIE3Mac = true;
  115.  
  116. else 
  117.  
  118.        is = new Is();
  119.  
  120.  
  121. //-->
  122. </SCRIPT>
  123.  
  124.  
  125. <SCRIPT LANGUAGE=JavaScript>
  126. <!--
  127.  
  128. if (isIE3Mac) {
  129.  
  130.             //Redirect and load a pre-defined HTML page with Flash Player in it 
  131.                        
  132.                   //for IE3Mac into the browser window.
  133.                   
  134.            
  135.            //document.write('testIE3');
  136.            //document.write('ShockMode = ' + ShockMode);       
  137.            
  138. document.write ('<frameset rows="*,1" frameborder="no" border = "0" framespacing="0">' +
  139.     '<frame name="digit" src="digit/ie3_4upMac.html" marginwidth="0" marginheight="0" scrolling="No" frameborder="no" border = "0" noresize framespacing="0">'  +
  140.     '<frame name="top" src="digit/top.html" marginwidth="0" marginheight="0" scrolling="auto" frameborder="no" border = "0" noresize framespacing="0">' +
  141.  
  142. '</frameset>');            
  143.            
  144.           }
  145.  
  146.  
  147. else if (!is.ie4up && is.nav3 || is.nav4up) {
  148. //document.write('testNav3/Nav4');
  149. //document.write('ShockMode = ' + ShockMode); 
  150.            
  151.     //Load a pre-defined HTML page 'on the fly' with Flash Player in it into //the browser window for Navigator 3, 4 and above on MAC or Windows system with //the Shockwave plugin installed, which we've already detected by looking through the navigator.mimeTypes array.
  152.  
  153. document.write ('<frameset rows="*,1" frameborder="no" border = "0" framespacing="0">' +
  154.     '<frame name="digit" src="digit/netscape3_4.html" marginwidth="0" marginheight="0" scrolling="No" frameborder="no" border = "0" noresize framespacing="0">'  +
  155.     '<frame name="top" src="digit/top.html" marginwidth="0" marginheight="0" scrolling="auto" frameborder="no" border = "0" noresize framespacing="0">' +
  156.  
  157. '</frameset>');          
  158.  } 
  159.  
  160.  
  161. // document.write() statements to create markup for Navigator 2, 3, 4 and later //versions with no shockwave. Load a static image here 
  162.  
  163.  
  164. else if (is.nav2) {
  165.  
  166. document.write ('<frameset rows="*,1" frameborder="no" border = "0" framespacing="0">' +
  167.     '<frame name="digit" src="digit/netscape2.html" marginwidth="0" marginheight="0" scrolling="No" frameborder="no" border = "0" noresize framespacing="0">'  +
  168.     '<frame name="top" src="digit/top.html" marginwidth="0" marginheight="0" scrolling="auto" frameborder="no" border = "0" noresize framespacing="0">' +
  169.  
  170. '</frameset>'); 
  171.  
  172.        }
  173.     
  174.                               
  175. else if (is.ie4up && is.mac) {
  176.  
  177.          //Redirect and load a pre-defined HTML page with Flash Player in it
  178.                        
  179.                   //for IE4upMac into the browser window.
  180.  
  181.            //document.write('testie4up');
  182.            //document.write('ShockMode=' + ShockMode);
  183.            
  184.     document.write ('<frameset rows="*,1" frameborder="no" border = "0" framespacing="0">' +
  185.     '<frame name="digit" src="digit/ie3_4upMac.html" marginwidth="0" marginheight="0" scrolling="No" frameborder="no" border = "0" noresize framespacing="0">'  +
  186.     '<frame name="top" src="digit/top.html" marginwidth="0" marginheight="0" scrolling="auto" frameborder="no" border = "0" noresize framespacing="0">' +
  187.  
  188. '</frameset>'); 
  189.        
  190.            
  191.                                  }        
  192.    
  193. //Load a pre-defined HTML page with Flash Player in it for IE3/IE4up for Windows into the browser window.
  194.           
  195.           else if (is.ie3 || is.ie4up && is.win32) {
  196.  
  197.                    
  198.                   
  199.  
  200.            //document.write('testie3/4up__forWindows');
  201.            //document.write('ShockMode=' + ShockMode);
  202.            
  203.     document.write ('<frameset rows="*,1" frameborder="no" border = "0" framespacing="0">' +
  204.     '<frame name="digit" src="digit/ie3_4Win32.html" marginwidth="0" marginheight="0" scrolling="No" frameborder="no" border = "0" noresize framespacing="0">'  +
  205.     '<frame name="top" src="digit/top.html" marginwidth="0" marginheight="0" scrolling="auto" frameborder="no" border = "0" noresize framespacing="0">' +
  206.  
  207. '</frameset>');            
  208.            
  209.       
  210.                                }
  211.           
  212. else if (is.other) {
  213.  
  214.                   //Redirect all other unix-compliant users to another page 
  215.  
  216.  
  217. //document.write('testUnix');
  218. //document.write('ShockMode=' + ShockMode);
  219.  
  220.     document.write ('<frameset rows="*,1" frameborder="no" border = "0" framespacing="0">' +
  221.     '<frame name="digit" src="digit/other.html" marginwidth="0" marginheight="0" scrolling="No" frameborder="no" border = "0" noresize framespacing="0">'  +
  222.     '<frame name="top" src="digit/top.html" marginwidth="0" marginheight="0" scrolling="auto" frameborder="no" border = "0" noresize framespacing="0">' +
  223.  
  224. '</frameset>');            
  225.            
  226.  
  227.  
  228.                     
  229.                                }
  230.  
  231. //-->
  232.    
  233. </SCRIPT> 
  234. <!-- no script framset-->
  235.  
  236. <body BGCOLOR=#333333>
  237. <MAP NAME="digitMap">
  238. <AREA COORDS="508,21,534,46" HREF="digit/digit/features/features.html">
  239. <AREA COORDS="500,106,525,132" HREF="digit/digit/demos/demos.html">
  240. <AREA COORDS="451,196,474,222" HREF="digit/digit/access/access.html">
  241. <AREA COORDS="384,256,409,283" HREF="digit/digit/essent/essent.html">
  242. <AREA COORDS="10,314,92,338" HREF="http://www.idg.com" TARGET="new">
  243. <AREA COORDS="501,315,525,339" HREF="http://www.digitmag.co.uk" TARGET="new">
  244. <AREA COORDS="537,315,561,339" HREF="http://www.interfac.com" TARGET="_top">
  245. </MAP>
  246. <center>
  247.  
  248. <IMG SRC="digit/digit.gif" WIDTH=580 HEIGHT=350 BORDER=0 USEMAP="#digitMap">
  249.  
  250. </center>
  251.  
  252.  
  253. <center>
  254. <p><font face="geneva,arial" size="2" color="#ff9900">| <a href="digit/digit/features/features.html">features</a> | <a href="digit/digit/demos/demos.html">demos</a> | <a href="digit/digit/access/access.html">accessories</a> | <a href="digit/digit/essent/essent.html">essentials</a> |</font></center>
  255. </body></html>
  256. <!-- interface new media -->
  257. <!-- http://www.interface-newmedia.com -->
  258. <!-- info@interface-newmedia.com -->
  259.