|
';
cal += '';
cal += '' + TR_start;
cal += '| ';
cal += month_of_year[month] + ' ' + year + '' + TD_end + TR_end;
cal += TR_start;
///////////////////////////////////
// DO NOT EDIT BELOW THIS POINT //
///////////////////////////////////
// LOOPS FOR EACH DAY OF WEEK
for(index=0; index < DAYS_OF_WEEK; index++) {
// PRINTS DAY
cal += TD_start + day_of_week[index] + TD_end;
}
cal += TD_end + TR_end;
cal += TR_start;
// FILL IN BLANK GAPS UNTIL TODAY'S DAY
for(index=0; index < dateObj.getDay(); index++) {
cal += TD_start + ' ' + TD_end;
}
// LOOPS FOR EACH DAY IN CALENDAR
for(index=0; index < DAYS_OF_MONTH; index++) {
if( dateObj.getDate() > index ) {
// RETURNS THE NEXT DAY TO PRINT
week_day =dateObj.getDay();
// START NEW ROW FOR FIRST DAY OF WEEK
if(week_day == 0) {
cal += TR_start;
}
if(week_day != DAYS_OF_WEEK) {
// SET VARIABLE INSIDE LOOP FOR INCREMENTING PURPOSES
var day = dateObj.getDate();
// PRINTS DAY
cal += TD_start + "" + day + "" + TD_end;
}
// END ROW FOR LAST DAY OF WEEK
if(week_day == DAYS_OF_WEEK) {
cal += TR_end;
}
}
// INCREMENTS UNTIL END OF THE MONTH
dateObj.setDate(dateObj.getDate()+1);
}// end for loop
cal += ' | |
';
cal += '';
cal += '';
cal += '';
// PRINT CALENDAR
testWindow.document.write(cal);
}
var testWindow;
var formType;
var fName;
function openCalendar(formName,type) {
formType=type;
fName=formName;
testWindow = window.open('','dates','width=360,height=300,resizable=1,status=1,menubar=0,location=0');
loadCalendar(document.forms[fName].elements[formType+'Month'].selectedIndex);
}
//-->
|
|


|
|
|
Daytona Beach
International Airport
Welcome:
Daytona Beach International Airport (DBIA) is the "Gateway
to Central Florida", and makes arriving in Daytona Beach as
pleasant as staying here. Daytona Beach is a convenient
alternative to the uncertainties of Orlando and Jacksonville
traffic. Airport personnel and ambassadors are committed to
providing passengers with world class customer service. The
services offered were selected to enhance your travel
experience. The accommodating design of the airport provides
short distances between parking lots, ticket counters, ground
transportation, baggage claim and terminals. The strategic
location of the airport provides quick access to the
East/Central Florida region.
Directions: Daytona Beach International Airport provides
service to over 150 destinations worldwide and is conveniently
located adjacent to Interstates 4 and 95.
History:
1940 - The City of Daytona Beach contracted a
zookeeper to run the airport. Unfortunately, accompanying the
zookeeper was his fur-covered menagerie. During World War II,
the U.S. Navy took over the airport for pilot training.
1946 - The City of Daytona Beach regained ownership of
the airport. The demand for air travel replaced rail travel as
the favored mode of transportation.
1992 - The Daytona Beach Regional Airport was transformed
into the Daytona Beach International Airport. The new $46
million airport surpassed the design of the former airport,
adding an international terminal and a newly extended
10,500-foot runway to accommodate larger planes.
Present - Daytona Beach International Airport offers
carrier service from Delta, Continental and Vintage, providing
passengers with premiere customer service, convenience and
hassle-free travel.
|