Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
89 lines (68 sloc)
2.84 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Navy Lakehurst Web Site</title> | |
| <script> | |
| <!-- BEGIN CODE HIDING | |
| // Set all needed variables | |
| var browser=''; // Variable to store Browser name | |
| var version=''; // Variable to store Browser version | |
| var entrance=''; //Variable to store result | |
| var oktext=''; // Variable to store ok-text | |
| var notok=''; // Variable to store NtoOk-text | |
| // IDENTIFY BROWSER TYPE | |
| if (navigator.appName.indexOf('Microsoft') != -1) | |
| browser = 'IE' | |
| else if (navigator.appName.indexOf('Netscape') != -1) | |
| browser = 'Netscape' | |
| else browser = 'NN'; | |
| // IDENTIFY BROWSER VER | |
| if (version == ''){ | |
| version= navigator.appVersion; | |
| paren = version.indexOf('('); | |
| whole_version = navigator.appVersion.substring(0,paren-1); | |
| version = parseInt(whole_version); | |
| } | |
| if (browser=="Netscape" && version>= "4.00")entrance="ok" | |
| if (browser=="IE" && version>= "3.03")entrance="ok" | |
| if (entrance=="ok"){ | |
| self.parent.location="http://www.lakehurst.navy.mil/web99";} | |
| // STOP HIDE --> | |
| </script> | |
| <meta HTTP-EQUIV="Pragma" CONTENT="no-cache"> | |
| <meta HTTP-EQUIV="Expires" CONTENT="0"> | |
| <!--- Expires and Pragma cause page to refresh when accessed. lag ---> | |
| <meta HTTP-EQUIV="refresh" CONTENT="0; URL=web99/index.html"> | |
| <meta name="description" content "Navy Lakehurst is part of the Naval Air Systems Command | |
| and the Aircraft Division, and home of the Aircraft Platform Interface (API) . We support | |
| Naval Aviation and assure that fixed and rotary wing aircraft can operate from aircraft | |
| carriers, and other air capable ships."> | |
| <meta name="keywords" | |
| content="US Navy, Navy Lakehurst, U.S. Navy, Aircraft Carriers, Catapults, Blue Angels, U.S. Military, Lakehurst Navy Base, API, Air Platform Interface, Naval Aviation, Naval Air Warfare Center, US Navy Fleet, NAWCAD, NAS, Naval Air Systems Command, Jets, | |
| Military Aircraft, pilots, Naval Testing, Navy Test, Hindenburg, Blimps, Zeppelins, Naval History, F-18, F18, Lakehurst New Jersey, Ocean County, Garden State"> | |
| <meta name="AUTHOR" content="LAG"> | |
| <style> <!-- a {color:navy;} a:visited {color:navy;} a:hover {color:red;}--> </style> | |
| </head> | |
| <!-- Official ATTRITION Mirror --> | |
| <body bgcolor="#FFFFFF" text="#000000" link="#000080" vlink="#000080"> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"><font face="Arial" size="2">Click Here To Proceed To: <a | |
| href="web99/index.html">www.lakehurst.navy.mil</a> </font></p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| <p align="center"> </p> | |
| </body> | |
| </html> |