You've booked your flights, your accommodation and
your travel insurance, now it's time for your car hire.
There is the decision of whether or not to hire a car to
get around. There is always the option to book
sightseeing tours through an operator but do you want to
be tied down to their itinerary and times and see only
what they choose to show you. Also do you want to be
reliant on public transport or incur the expense of
taxis. You may need a car to transport you to and from
your accommodation.
You have waited all year for your annual holiday so
surely you want to make the most of this? To ensure you
get to see as much as you can and to sample the local
culture and see the sights your best option maybe to
hire a car. This does not have to be for the entire
duration of your stay you may decide to just hire a car
for a few days.
Drivers must hold and produce a full and valid driving
licence held for at least one year (or in some cases an
international driving licence). You will be required to
produce all sections of your licence. Most company’s
request that drivers are over 25 and less than 65 years
of age although depending on the Car Company and
destination this may vary it is best to check first.
There maybe additional charges for younger drivers.
Car hire can easily be arranged prior to your departure
and there are some questions you need to ask yourself
prior to booking.
Some points to consider when renting a car:
Luggage how much boot space will you require?
How many of you are travelling and what size car
will be needed for you all to fit comfortably.
Do you require any additionally drivers to be
insured.
Should you go for air-conditioning, it will be a
must in some countries.
Out for some fun and excitement maybe a
convertible or a jeep will be your preferred choice.
Or why not even hire something sporty!
What level of insurance is required this will
depend on your destination. It is best to arrange
this prior to your departure this should .
Ensure that you are not caught out by
overzealous sales persons selling you insurances
that are not really necessary.
Check whether the car you hire takes leaded or
unleaded petrol and learn the foreign words for
them.
Finally don’t forget to check which side of the
road you need to drive on. Another thing you should
take along is a spare pair of prescription glasses
or contact lenses just in case.
';
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 += '