function vrcCleanNumber(snum) {
if (snum.length > 1 && snum.substr(0, 1) == '0') {
return parseInt(snum.substr(1));
}
return parseInt(snum);
}
function vrcFormatTime(h, m) {
var time_format = 'H:i';
var time_ftfour = (time_format == 'H:i');
var time_ampm = '';
if (!time_ftfour) {
if (h >= 12 && h 12) {
h -= 12;
}
} else {
time_ampm = ' AM';
}
}
return (h < 10 ? ('0' + h) : h) + ':' + ((m < 10 ? ('0' + m) : m)) + time_ampm;
}
function vrcValidateSearch() {
if (typeof jQuery === 'undefined' || typeof vrc_wopening_pick === 'undefined') {
return true;
}
if (vrc_mopening_pick !== null) {
// pickup time
var pickh = jQuery('#vrccomselph').find('select').val();
var pickm = jQuery('#vrccomselpm').find('select').val();
if (!pickh || !pickh.length || !pickm) {
return true;
}
pickh = vrcCleanNumber(pickh);
pickm = vrcCleanNumber(pickm);
if (pickh == vrc_mopening_pick[0]) {
if (pickm < vrc_mopening_pick[1]) {
// location is still closed at this time
jQuery('#vrccomselpm').find('select').html(''+(vrc_mopening_pick[1] < 10 ? '0'+vrc_mopening_pick[1] : vrc_mopening_pick[1])+'').val(vrc_mopening_pick[1]);
alert(Joomla.JText._('VRC_LOC_WILL_OPEN_TIME').replace('%s', vrcFormatTime(vrc_mopening_pick[0], vrc_mopening_pick[1])));
// do not return false as we are overwriting the pickup time
// return false;
}
}
if (pickh == vrc_mopening_pick[2]) {
if (pickm > vrc_mopening_pick[3]) {
// location is already closed at this time for a pick up
jQuery('#vrccomselpm').find('select').html(''+(vrc_mopening_pick[3] < 10 ? '0'+vrc_mopening_pick[3] : vrc_mopening_pick[3])+'').val(vrc_mopening_pick[3]);
alert(Joomla.JText._('VRC_LOC_WILL_CLOSE_TIME').replace('%s', vrcFormatTime(vrc_mopening_pick[2], vrc_mopening_pick[3])));
// do not return false as we are overwriting the pickup time
// return false;
}
}
// check for breaks
if (vrc_mopening_pick[4] && vrc_mopening_pick[4].length) {
for (var b = 0; b break_from_secs && pick_secs vrc_mopening_pick[4][b]['th'] && pick_secs < break_from_secs && pick_secs vrc_mopening_pick[4][b]['th'] && pick_secs > break_from_secs && pick_secs > break_to_secs) {
// overnight break, with time before midnight
alert(break_mess);
return false;
}
}
}
}
if (vrc_mopening_drop !== null) {
// dropoff time
var droph = jQuery('#vrccomseldh').find('select').val();
var dropm = jQuery('#vrccomseldm').find('select').val();
if (!droph || !droph.length || !dropm) {
return true;
}
droph = vrcCleanNumber(droph);
dropm = vrcCleanNumber(dropm);
if (droph == vrc_mopening_drop[0]) {
if (dropm > vrc_mopening_drop[1]) {
// location is already closed at this time
jQuery('#vrccomseldm').find('select').html(''+(vrc_mopening_drop[1] < 10 ? '0'+vrc_mopening_drop[1] : vrc_mopening_drop[1])+'').val(vrc_mopening_drop[1]);
alert(Joomla.JText._('VRC_LOC_WILL_CLOSE_TIME').replace('%s', vrcFormatTime(vrc_mopening_drop[0], vrc_mopening_drop[1])));
// do not return false as we are overwriting the drop off time
// return false;
}
}
if (droph == vrc_mopening_drop[2]) {
if (dropm < vrc_mopening_drop[3]) {
// location is still closed at this time for a drop off
jQuery('#vrccomseldm').find('select').html(''+(vrc_mopening_drop[3] < 10 ? '0'+vrc_mopening_drop[3] : vrc_mopening_drop[3])+'').val(vrc_mopening_drop[3]);
alert(Joomla.JText._('VRC_LOC_WILL_OPEN_TIME').replace('%s', vrcFormatTime(vrc_mopening_drop[2], vrc_mopening_drop[3])));
// do not return false as we are overwriting the drop off time
// return false;
}
}
// check for breaks
if (vrc_mopening_drop[4] && vrc_mopening_drop[4].length) {
for (var b = 0; b break_from_secs && drop_secs vrc_mopening_drop[4][b]['th'] && drop_secs < break_from_secs && drop_secs vrc_mopening_drop[4][b]['th'] && drop_secs > break_from_secs && drop_secs > break_to_secs) {
// overnight break, with time before midnight
alert(break_mess);
return false;
}
}
}
}
return true;
}
jQuery(function() {
jQuery("#pickupdate").datepicker("setDate", new Date(2025, 11, 18));
if (jQuery("#vrc-bookingpart-init").length) {
jQuery('html,body').animate({ scrollTop: (jQuery("#vrc-bookingpart-init").offset().top - 5) }, { duration: 'slow' });
}
jQuery(document.body).on('click', '.vrc-cdetails-cal-pickday', function() {
if (!jQuery("#pickupdate").length || jQuery(this).parent('td').hasClass('vrctdpast')) {
return;
}
var tdday = jQuery(this).attr('data-daydate');
var tdymd = jQuery(this).attr('data-ymd');
if (!tdday || !tdymd) {
return;
}
// make sure the clicked date is not disabled
if (typeof jQuery('#pickupdate').datepicker('option', 'beforeShowDay') === 'function') {
// let the datepicker validate the clicked day
let ymd_parts = tdymd.split('-');
let ymd_object = new Date(ymd_parts[0], ymd_parts[1] - 1, ymd_parts[2], 0, 0, 0, 0);
if (!jQuery('#pickupdate').datepicker('option', 'beforeShowDay')(ymd_object)[0]) {
return;
}
}
// set pick-up date in datepicker
jQuery('#pickupdate').datepicker('setDate', tdday);
// animate to datepickers position
if (jQuery("#vrc-bookingpart-init").length) {
jQuery('html,body').animate({
scrollTop: (jQuery('#vrc-bookingpart-init').offset().top - 5)
}, 600, function() {
// animation-complete callback should simulate the onSelect event of the pick-up datepicker
if (typeof vrcSetMinDropoffDate !== "undefined") {
vrcSetMinDropoffDate();
}
if (typeof vrcLocationWopening !== "undefined") {
vrcLocationWopening('pickup');
}
// give focus to drop-off datepicker
jQuery('#releasedate').focus();
});
}
});
});
1950
BAUJAHR
0
PS
0
ZYLINDER
5.
Gänge
Auf der Suche nach
Legendär & Filmreif?
Dann ist der legendären VW Käfer 1303 der perfekte Wegbegleiter für Sie und Ihren Ausflug in die Vergangenheit! Mit seinem zeitlosen Design und zuverlässigen Leistung hat sich der „Käfer“ seit 1938 zu einer kulturellen Ikone entwickelt, die Autofahrer aller Altersgruppen begeistert.
Bekannt aus dem Film „Ein toller Käfer“ mit Herbie, dem sympathischen Wagen, der für Hilfsbereitschaft und Warmherzigkeit steht, zeichnet sich dieser Oldtimer der perfekte Begleiter für einen Tages- oder Wochenendausflug aus. Das offene Verdeck sorgt für ein besonderes Fahrgefühl und lässt Sie den Wind in den Haaren spüren.
Ein Muss für alle Käfer-Fans und alle die es noch werden wollen.
Mieten Sie noch heute den Käfer 1200 und genießen Sie eine Fahrt in die Vergangenheit!
Sie wagen sich nicht selbst an’s Steuer? Kein Problem, buchen Sie unseren Chauffeur-Service optional hinzu.
Ein Tag reicht Ihnen nicht und Sie würden lieber ein ganzes Wochenende mit Ihrem Klassiker verbringen? Dann buchen sie jetzt unser unvergessliches Wochenendangebot.
Sie sehen gerade einen Platzhalterinhalt von Vimeo. Um auf den eigentlichen Inhalt zuzugreifen, klicken Sie auf die Schaltfläche unten. Bitte beachten Sie, dass dabei Daten an Drittanbieter weitergegeben werden.
Sie sehen gerade einen Platzhalterinhalt von YouTube. Um auf den eigentlichen Inhalt zuzugreifen, klicken Sie auf die Schaltfläche unten. Bitte beachten Sie, dass dabei Daten an Drittanbieter weitergegeben werden.
Sie sehen gerade einen Platzhalterinhalt von Facebook. Um auf den eigentlichen Inhalt zuzugreifen, klicken Sie auf die Schaltfläche unten. Bitte beachten Sie, dass dabei Daten an Drittanbieter weitergegeben werden.
Sie sehen gerade einen Platzhalterinhalt von Instagram. Um auf den eigentlichen Inhalt zuzugreifen, klicken Sie auf die Schaltfläche unten. Bitte beachten Sie, dass dabei Daten an Drittanbieter weitergegeben werden.