And the Captains are....
-
SuperFan_FutureGrad
- Egg

- Posts: 35
- Joined: Tue Jan 18, 2005 3:29 pm
- Location: Bowling Green, OH
And the Captains are....
I apologize if this has been posted elsewhere. Next year, the Falcons will have 5 captains:
Omar Jacobs, QB, RS-JR
Rob Warren, OL, RS-SR
Steve Sanders, WR, RS-SR
Mike Thaler, DL, RS-SR
Teddy Piepkow, LB, SR
I am not sure why they have chosen five this year. I know each player was given three votes.
Omar Jacobs, QB, RS-JR
Rob Warren, OL, RS-SR
Steve Sanders, WR, RS-SR
Mike Thaler, DL, RS-SR
Teddy Piepkow, LB, SR
I am not sure why they have chosen five this year. I know each player was given three votes.
Bryan
OMAR JACOBS FOR HEISMAN '05
OMAR JACOBS FOR HEISMAN '05
- Falconfreak90
- Rubber City Falcon

- Posts: 18541
- Joined: Fri Jul 23, 2004 9:28 am
- Location: Green, OH
- Contact:
- RossfordFalcon
- Chick

- Posts: 258
- Joined: Sun Dec 19, 2004 9:38 pm
- Location: In the great little city of Rossford OH
- Falconfreak90
- Rubber City Falcon

- Posts: 18541
- Joined: Fri Jul 23, 2004 9:28 am
- Location: Green, OH
- Contact:
- FalconKing
- Fledgling

- Posts: 458
- Joined: Fri Jul 23, 2004 1:30 pm
- Location: Cleveland, OH
We really need an aplet on the main page that says something like, "Falconfeak sez: Only 215 days xx hours, xx minutes, & xx seconds till kickoff!"Falconfreak90 wrote:Well, since you asked...JJ95 wrote:I those five will look good walking out of the tunnel next year for the coin toss. How long until Wisconson, I can't wait!![]()
Only 215 days!!!
::Grin::
a countdown would be cool, but an applet is not the answer... it drags down page loading time something fierce. There are other ways to do it, I just haven't had any success learning them.FalconKing wrote:
We really need an aplet on the main page that says something like, "Falconfeak sez: Only 215 days xx hours, xx minutes, & xx seconds till kickoff!"
::Grin::
We've used simple javascript in the past and it hasn't added too much to the page speed.TG1996 wrote:a countdown would be cool, but an applet is not the answer... it drags down page loading time something fierce. There are other ways to do it, I just haven't had any success learning them.FalconKing wrote:
We really need an aplet on the main page that says something like, "Falconfeak sez: Only 215 days xx hours, xx minutes, & xx seconds till kickoff!"
::Grin::
TG: Try something like this ....TG1996 wrote:yeah, the javascript one is the way to go, I can just never find the right code.1987alum wrote: We've used simple javascript in the past and it hasn't added too much to the page speed.
<script language="JavaScript">
var count = new Date("September 03, 2005 13:00:00");
var timeUp = "Go Falcons\!";
var timerID;
var timerRunning = false;
var today = new Date();
var persec = 0;
var permin = 0;
var perhour = 0;
var perday = 0;
var secsRemain = 0;
var dayRemain = 0;
var minRemain = 0;
var timeRemain = 0;
var expire = 0;
function stopclock (){
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function startclock () {
stopclock();
showtime();
}
function showtime () {
today = new Date();
persec = 1000;
permin = 60*persec;
perhour = 60*permin;
perday = 24*perhour;
expire = (count.getTime() - today.getTime());
secsRemain = (Math.floor(expire/persec))%60;
minRemain = (Math.floor(expire/permin))%60;
hoursRemain = (Math.floor(expire/perhour))%24;
daysRemain = Math.floor(expire/perday);
if (hoursRemain < 10) hoursRemain = "0" + hoursRemain;
if (minRemain < 10) minRemain = "0" + minRemain;
if (secsRemain < 10) secsRemain = "0" + secsRemain;
timeRemain ='';
timeRemain = daysRemain + ":" + hoursRemain + ":" + minRemain + ":" + secsRemain;
document.clock.face.value = timeRemain;
timerID = setTimeout("showtime()",1*persec);
timerRunning = true;
if (expire <= 0){
document.clock.face.value = timeUp;
stopclock();
}
}
</script>
-
transfer2BGSU
- Peregrine

- Posts: 5829
- Joined: Fri Jul 23, 2004 8:50 am
- Location: Jed's, Myle's Pizza, Corner Grill




