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.
90 lines (70 sloc)
2.15 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> | |
| <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> | |
| <title>AAESA</title> | |
| <script language="JavaScript"> | |
| <!-- Hide it | |
| DayName = new Array(7) | |
| DayName[0] = "SUNDAY " | |
| DayName[1] = "MONDAY " | |
| DayName[2] = "TUESDAY " | |
| DayName[3] = "WEDNESDAY " | |
| DayName[4] = "THURSDAY " | |
| DayName[5] = "FRIDAY " | |
| DayName[6] = "SATURDAY " | |
| MonthName = new Array(12) | |
| MonthName[0] = "January " | |
| MonthName[1] = "February " | |
| MonthName[2] = "March " | |
| MonthName[3] = "April " | |
| MonthName[4] = "May " | |
| MonthName[5] = "June " | |
| MonthName[6] = "July " | |
| MonthName[7] = "August " | |
| MonthName[8] = "September " | |
| MonthName[9] = "October " | |
| MonthName[10] = "November " | |
| MonthName[11] = "December " | |
| function getDateStr(){ | |
| var Today = new Date() | |
| var WeekDay = Today.getDay() | |
| var Month = Today.getMonth() | |
| var Day = Today.getDate() | |
| var Year = Today.getYear() | |
| if(Year <= 99) | |
| Year += 1900 | |
| return MonthName[Month] + Day + ", " + Year | |
| } | |
| function getDayStr(){ | |
| var Today = new Date() | |
| var WeekDay = Today.getDay() | |
| var Month = Today.getMonth() | |
| var Day = Today.getDate() | |
| var Year = Today.getYear() | |
| if(Year <= 99) | |
| Year += 1900 | |
| return DayName[WeekDay] | |
| } | |
| //--> | |
| </script> | |
| </head> | |
| <body bgcolor="white"> | |
| <p>OK kids. Today's discussion is about security. Or in this instance, the | |
| lack thereof.</p> | |
| <p>Security, as defined in Webster's dictionary, is as follows: </p> | |
| <p>And I quote: "measures taken to guard against espionage or sabotage, crime, | |
| attack, or escape"</p> | |
| <p> -As from Webster's Collegiate Dictionary 10th Edition, page1056 | |
| second column def. 4b</p> | |
| <p> </p> | |
| <p>I hope that you all learned form today's lesson, kids. And remember, never leave | |
| the front door unlocked, especially if you're</p> | |
| <p>not sure what the people in the neighborhood are like. Because, even among the | |
| sheep, there are a few wolves.</p> | |
| <p>And don't forget to do your homework Mr. or Ms. Wells.</p> | |
| <p>Have a nice day!</p> | |
| <p><img src="sh00tr.jpg" alt="sh00tr.jpg (54477 bytes)" WIDTH="250" HEIGHT="247"></p> | |
| <p> </p> | |
| </body> | |
| </html> | |
| <!-- www.attrition.org web hack mirror - watermark or something --> |