1 <% include('/elements/header-popup.html', '') %>
22 <CENTER>Freeside</CENTER>
26 <IMG SRC="<%$fsurl%>images/small-logo.png" BORDER="0"><BR>
27 <H3>version <% $FS::VERSION %></H3>
41 <H3>Core Emeritus</H3>
52 C.J. Adams-Collier<BR>
55 Mark Asplen-Taylor<BR>
57 Charles A. Beasley<BR>
83 Fernando M. Kiernan<BR>
84 Frederico Caldeira Knabben<BR>
96 Stanislav Sinyagin<BR>
132 <SCRIPT TYPE="text/javascript">
134 function myScroll() {
136 documentYposition += 1;
137 window.scroll(0,documentYposition);
141 if ( documentYposition > documentLength ) {
142 documentYposition = 0;
145 if ( documentYposition == startingPosition ) {
149 setTimeout('myScroll()', timeout);
152 function DelayThenScroll() {
153 window.scroll(0,documentYposition);
154 documentLength = myHeight();
155 setTimeout('myScroll()', 3000);
158 function myHeight() {
160 return document.body.offsetHeight;
161 else if (document.layers)
162 return document.body.document.height;
165 return 2300; // approx height (add more per contributors)
168 document.body.style.overflow = 'hidden';
170 var startingPosition = 303;
172 //huh, adjust for firefox
173 var ua = navigator.userAgent;
174 var opera = /opera [56789]|opera\/[56789]/i.test(ua);
175 var webkit = /webkit/i.test(ua)
176 var moz = !opera && !webkit && /gecko/i.test(ua);
178 startingPosition += 20;
179 } else if ( opera ) {
180 startingPosition += 21;
183 var documentYposition = startingPosition;
185 window.onLoad = DelayThenScroll();