add latitude/longitude to prospects, customers and package locations, RT#15539
[freeside.git] / httemplate / docs / credits.html
1 <% include('/elements/header-popup.html', '') %>
2
3 <BR>
4 <BR>
5 <BR>
6 <BR>
7 <BR>
8 <BR>
9 <BR>
10 <BR>
11 <BR>
12 <BR>
13 <BR>
14 <BR>
15 <BR>
16 <BR>
17 <BR>
18 <BR>
19 <BR>
20 <BR>
21
22 <FONT SIZE=6>
23   <CENTER>Freeside</CENTER>
24 </FONT>
25
26 <CENTER>
27 <IMG SRC="<%$fsurl%>images/small-logo.png" BORDER="0"><BR>
28 <H3>version <% $FS::VERSION %></H3>
29 </CENTER>
30
31 <CENTER>
32
33 <H3>Core Team</H3>
34 Jeremy Davis<BR>
35 Ivan Kohler<BR>
36 Mark Wells<BR>
37 <BR>
38
39 <H3>Core Emeritus</H3>
40 Peter Bowen<BR>
41 Jeff Finucane<BR>
42 Jason Hall<BR>
43 Kristian Hoffman<BR>
44 Erik Levinson<BR>
45 Brian McCane<BR>
46 Richard Siddall<BR>
47 Matt Simerson<BR>
48 <BR>
49
50 <H3>Contributors</H3>
51 Stephen Amadei<BR>
52 Eric Arvidsson<BR>
53 Mark Asplen-Taylor<BR>
54 Mihai Bazon<BR>
55 Charles A. Beasley<BR>
56 Stephen Bechard<BR>
57 Eric Bosrup<BR>
58 Dickie Bradford<BR>
59 Dave Burgess<BR>
60 Joe Camadine<BR>
61 Chris Cappuccio<BR>
62 Rebecca Cardennis<BR>
63 Shane Chrisp<BR>
64 Luke Crawford<BR>
65 Brad Dameron<BR>
66 Dave Denney<BR>
67 Serge Dolgov<BR>
68 Scott Edwards<BR>
69 Kenny Elliott<BR>
70 Donald Greer<BR>
71 Joel Griffiths<BR>
72 Ryan Gunn<BR>
73 Troy Hammonds<BR>
74 Sean Hanson<BR>
75 Dale Hege<BR>
76 Kelly Hickel<BR>
77 Mark James<BR>
78 Frederico Caldeira Knabben<BR>
79 Greg Kuhnert<BR>
80 Randall Lucas<BR>
81 Foteos Macrides<BR>
82 Roger Mangraviti<BR>
83 mimooh<BR>
84 Mack Nagashima<BR>
85 David Peters<BR>
86 Matt Peterson<BR>
87 Luke Pfeifer<BR>
88 Ricardo Signes<BR>
89 Steve Simitzis<BR>
90 Stanislav Sinyagin<BR>
91 Jason Spence<BR>
92 James Switzer<BR>
93 Audrey Tang<BR>
94 Jason Thomas<BR>
95 Jesse Vincent<BR>
96 Johan Vromans<BR>
97 Peter Wemm<BR>
98 Mark Williamson<BR>
99 Tim Yardley<BR>
100
101 </CENTER>
102
103 <BR>
104 <BR>
105 <BR>
106 <BR>
107 <BR>
108 <BR>
109 <BR>
110 <BR>
111 <BR>
112 <BR>
113 <BR>
114 <BR>
115 <BR>
116 <BR>
117 <BR>
118 <BR>
119 <BR>
120 <BR>
121 <BR>
122
123 <SCRIPT TYPE="text/javascript">
124
125 function myScroll() {
126
127   documentYposition += 1;
128   window.scroll(0,documentYposition);
129
130   var timeout = 25;
131
132   if ( documentYposition > documentLength ) {
133     documentYposition = 0;
134   }
135
136   if ( documentYposition == startingPosition ) {
137     timeout = 5000;
138   }
139
140   setTimeout('myScroll()', timeout);
141 }
142
143 function DelayThenScroll() {
144   window.scroll(0,documentYposition);
145   documentLength = myHeight();
146   setTimeout('myScroll()', 3000);
147 }
148
149 function myHeight() {
150 /*    if (document.all) 
151         return document.body.offsetHeight;
152     else if (document.layers)
153         return document.body.document.height;
154     else
155 */
156         return 1850; // approx height (add more per contributors)
157 }
158
159 document.body.style.overflow = 'hidden';
160
161 var startingPosition = 360;
162
163 //huh, adjust for firefox
164 var ua = navigator.userAgent;
165 var opera = /opera [56789]|opera\/[56789]/i.test(ua);
166 var webkit = /webkit/i.test(ua)
167 var moz = !opera && !webkit && /gecko/i.test(ua);
168 if ( moz ) {
169   startingPosition += 20;
170 } else if ( opera ) {
171   startingPosition += 21;
172 }
173
174 var documentYposition = startingPosition;
175 var documentLength;
176 window.onLoad = DelayThenScroll();
177
178 </SCRIPT>
179
180 </BODY>
181 </HTML>