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.
87 lines (83 sloc)
3.27 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> | |
| <!-- This scrolls ' Your Message Here ' in the status bar --> | |
| <script LANGUAGE="JavaScript"> | |
| //Modified by Coffeecup.com | |
| function infoscroll(seed,looped) | |
| { | |
| var text1 = " Welcome to Arkansa Fire Academy! A Training Division of Southern Arkansas University Tech. Course Descriptions, Class Schedules, Satellite Training, Lesson Plans and More!"; | |
| var text2 = " The Academy Welcomes you to our On Line University!"; | |
| var msg=text1+text2; | |
| var putout = " "; | |
| var c = 1; | |
| if (looped > 10) { | |
| window.status="<Thanks !>"; | |
| } | |
| else if (seed > 100) { | |
| seed--; | |
| var cmd="infoscroll(" + seed + "," + looped + ")"; | |
| timerTwo=window.setTimeout(cmd,100); | |
| } | |
| else if (seed <= 100 && seed > 0) { | |
| for (c=0 ; c < seed ; c++) { | |
| putout+=" "; | |
| } | |
| putout+=msg.substring(0,100-seed); | |
| seed--; | |
| var cmd="infoscroll(" + seed + "," + looped + ")"; | |
| window.status=putout; | |
| timerTwo=window.setTimeout(cmd,100); | |
| } | |
| else if (seed <= 0) { | |
| if (-seed < msg.length) { | |
| putout+=msg.substring(-seed,msg.length); | |
| seed--; | |
| var cmd="infoscroll(" + seed + "," + looped + ")"; | |
| window.status=putout; | |
| timerTwo=window.setTimeout(cmd,100); // 100 | |
| } | |
| else { | |
| window.status=" "; | |
| looped += 1; | |
| var cmd = "infoscroll(100," + looped + ")"; | |
| timerTwo=window.setTimeout(cmd,75); // 75 | |
| } | |
| } | |
| } | |
| // --> | |
| <!-- | |
| infoscroll(100,1) | |
| // --> | |
| </script> | |
| <head> | |
| <title> AFA Page </title> | |
| <meta NAME="description" | |
| CONTENT="THE ARKANSAS FIRE ACADEMY A Training Division of Southern Arkansas University Tech. Course Descriptions, Class Schedules, Satellite Training, Lesson Plans and More!"> | |
| <meta NAME="keywords" | |
| CONTENT="ARKANSAS FIRE ACADEMY, ARKANSAS, Arkansas, arkansas, FIRE, Fire, fire, ACADEMY, Academy, academy, School, school, Studies, studies, | |
| Firefighting Lesson Plans, Lesson, Lessons, Courses, Course, Plans, plans, Alarm, alarm, Firemen, Firewomen, Firefighters, Firefighting, | |
| Fires, Airport, tools"> | |
| <meta NAME="GENERATOR" CONTENT="Microsoft FrontPage 3.0"> | |
| </head> | |
| <frameset FRAMESPACING="0" BORDER="0" FRAMEBORDER="0" cols="24%,76%"> | |
| <frame SCROLLING="auto" SRC="side.html"> | |
| <frame SCROLLING="auto" NAME="main" SRC="main.html"> | |
| <noframes> | |
| <body BACKGROUND TEXT="#000000" LINK="#0000FF" VLINK="#551A8B" ALINK="#FF0000" | |
| BGCOLOR="#FFFFFF"> | |
| <p align="center">NOTE: This is a frame enhanced page. Best viewed in a web browser that | |
| supports frames (e.g. Netscape). </p> | |
| <hr> | |
| <p align="center">If you can read this, your browser does not support frames<br> | |
| Click here to get Netscape<br> | |
| <br> | |
| <a HREF="http://home.netscape.com/comprod/mirror/index.html"><img SRC="netscape30_now.gif" | |
| WIDTH="88" HEIGHT="31"></a> </p> | |
| </body> | |
| </noframes> | |
| </frameset> | |
| <frameset> | |
| <noframes> | |
| </noframes> | |
| </frameset> | |
| </html> | |
| <!-- www.attrition.org web hack mirror - watermark or something --> |