Hampton Inn And Suites Kokomo  
2920 S Reed Rd
Kokomo, IN 46902

|
from $89.00* Special Internet Rate
Book online or call 1-800-761-3936
|

|
Brief Summary
The First Class Hampton Inn Is Conveniently Located Within A Few Miles Of Hiking, Biking And Golf. Situated 55 Miles From Indianapolis International Airport, This Hotel Is Two Miles From Highland Park, Elwood Haynes Museum And Opalescent Glass Company. Also Convenient To The Hotel Are Other Attractions Such As Eastern Howard Performing Arts, Automotive Heritage Museum, Seiberling Mansion, Circus City Museum And Grisson Air Park. A Part Of The Nation's Leading Chain Of Quality, Value Priced Hotels, The Hampton Inn Is An Ideal Destination For Business And Leisure Travelers. The Hotel's Lobby Is Furnished With Antiques And Warm Wood Tones. The Lobby's Center Piece Is A Two Story Fireplace, That Was Originally The Entryway For An Apartment Building Built In 1926. The Hotel Features 105 Guest Rooms Suite, All With Hair Dryer, Iron/ironing Board And In Room Coffee Maker. Amenities Include Complimentary Continental Breakfast, Free Local Calls And Tv With Cable. The Well Trained Staff Complements The Fine Accommodations And Prime Location. The Staff Will Cater To All Your Needs To Make Your Stay Enjoyable And Comfortable. The Hampton Inn Is Minutes To Dining, Shopping And Entertainment Venues.
Cheap hotels and hotel reservations in Kokomo. Book your hotel now and save!
Worldwide deals on travel, vacations, hotel rooms and more.
|
';
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 += ' |