Tropical beaches… lush rain forests… dramatic coastal cliffs — with these and other attractions, Hawaii is more than just America’s 50th state or a group of islands in the South Pacific. It’s a special destination that attracts millions of visitors each year. Our partners offer the best Hawaii Rental Car discounts available - whether you are arriving at the Kona Keahole Airport or HIlo Gen Lyman Field, save a lot of money by booking your rental car here. We also partner with major airlines, so there are always plenty of flights to choose from, and our special Web-only deals will save you money, too.
Kailua-Kona Hotels | Waikoloa Hotels | Hilo Hotels | Kona Car Rentals
' + TD_end + TR_end; cal += TR_start; /////////////////////////////////// // DO NOT EDIT BELOW THIS POINT // /////////////////////////////////// // LOOPS FOR EACH DAY OF WEEK for(index=0; index 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 += '