var isMinNS4 = document.layers var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1 var dom=document.getElementById&&!ie&&navigator.userAgent.indexOf("Opera")==-1 function Scroller(x, y, width, height, border, padding) { this.x = x; this.y = y; this.width = width; this.height = height; this.border = border; this.padding = padding; this.items = new Array(); this.created = false; this.fgColor = "#000000"; this.bgColor = "#ffffff"; this.bdColor = "#000000"; this.fontFace = "Arial,Helvetica"; this.fontSize = "2"; this.speed = 20; this.pauseTime = 10000; this.setColors = scrollerSetColors; this.setFont = scrollerSetFont; this.setSpeed = scrollerSetSpeed; this.setPause = scrollersetPause; this.addItem = scrollerAddItem; this.create = scrollerCreate; this.show = scrollerShow; this.hide = scrollerHide; this.moveTo = scrollerMoveTo; this.moveBy = scrollerMoveBy; this.getzIndex = scrollerGetzIndex; this.setzIndex = scrollerSetzIndex; this.stop = scrollerStop; this.start = scrollerStart; } function hideLayer(layer) { if (isMinNS4) layer.visibility = "hide"; if (ie||dom) layer.style.visibility = "hidden"; } function showLayer(layer) { if (isMinNS4) layer.visibility = "show"; if (ie||dom) layer.style.visibility = "visible"; } function inheritLayer(layer) { if (isMinNS4) layer.visibility = "inherit"; if (ie||dom) layer.style.visibility = "inherit"; } function getVisibility(layer) { if (isMinNS4) { if (layer.visibility == "show") return "visible"; if (layer.visibility == "hide") return "hidden"; return layer.visibility; } if (ie||dom) return layer.style.visibility; return ""; } function isVisible(layer) { if (isMinNS4 && layer.visibility == "show") return(true); if (ie||dom && layer.style.visibility == "visible") return(true); return(false); } function moveLayerTo(layer, x, y) { if (isMinNS4) layer.moveTo(x, y); if (ie||dom) { layer.style.left = x; layer.style.top = y; } } function moveLayerBy(layer, dx, dy) { if (isMinNS4) layer.moveBy(dx, dy); if (ie||dom) { layer.style.left= parseInt(layer.style.left)+dx; layer.style.top= parseInt(layer.style.top)+dy; } } function getLeft(layer) { if (isMinNS4) return(layer.left); if (ie||dom) return(parseInt(layer.style.left)); return(-1); } function getTop(layer) { if (isMinNS4) return(layer.top); if (ie||dom) return(parseInt(layer.style.top)); return(-1); } function getRight(layer) { if (isMinNS4) return(layer.left + getWidth(layer)); if (ie||dom) return(parseInt(layer.style.left) + getWidth(layer)); return(-1); } function getBottom(layer) { if (isMinNS4) return(layer.top + getHeight(layer)); else if (ie||dom) return(parseInt(layer.style.top) + getHeight(layer)); return(-1); } function getPageLeft(layer) { if (isMinNS4) return(layer.pageX); if (ie||dom) return(layer.offsetLeft); return(-1); } function getPageTop(layer) { if (isMinNS4) return(layer.pageY); if (ie||dom) return(layer.offsetTop); return(-1); } function getWidth(layer) { if (isMinNS4) { if (layer.document.width) return(layer.document.width); else return(layer.clip.right - layer.clip.left); } if (ie||dom) { if (layer.style.width) return(layer.style.width); else return(layer.offsetWidth); } return(-1); } function getHeight(layer) { if (isMinNS4) { if (layer.document.height) return(layer.document.height); else return(layer.clip.bottom - layer.clip.top); } if (ie||dom) { if (false && layer.style.height) return(layer.style.height); else return(layer.offsetHeight); } return(-1); } function getzIndex(layer) { if (isMinNS4) return(layer.zIndex); if (ie||dom) return(layer.style.zIndex); return(-1); } function setzIndex(layer, z) { if (isMinNS4) layer.zIndex = z; if (ie||dom) layer.style.zIndex = z; } function clipLayer(layer, clipleft, cliptop, clipright, clipbottom) { if (isMinNS4) { layer.clip.left = clipleft; layer.clip.top = cliptop; layer.clip.right = clipright; layer.clip.bottom = clipbottom; } if (ie||dom) layer.style.clip = 'rect(' + cliptop + ' ' + clipright + ' ' + clipbottom + ' ' + clipleft +')'; } function getClipLeft(layer) { if (isMinNS4) return(layer.clip.left); if (ie||dom) { var str = layer.style.clip; if (!str) return(0); var clip = getIEClipValues(layer.style.clip); return(clip[3]); } return(-1); } function getClipTop(layer) { if (isMinNS4) return(layer.clip.top); if (ie||dom) { var str = layer.style.clip; if (!str) return(0); var clip = getIEClipValues(layer.style.clip); return(clip[0]); } return(-1); } function getClipRight(layer) { if (isMinNS4) return(layer.clip.right); if (ie||dom) { var str = layer.style.clip; if (!str) return(layer.style.width); var clip = getIEClipValues(layer.style.clip); return(clip[1]); } return(-1); } function getClipBottom(layer) { if (isMinNS4) return(layer.clip.bottom); if (ie||dom) { var str = layer.style.clip; if (!str) return(layer.style.height); var clip = getIEClipValues(layer.style.clip); return(clip[2]); } return(-1); } function getClipWidth(layer) { if (isMinNS4) return(layer.clip.width); if (ie||dom) { var str = layer.style.clip; if (!str) return(layer.style.width); var clip = getIEClipValues(layer.style.clip); return(clip[1] - clip[3]); } return(-1); } function getClipHeight(layer) { if (isMinNS4) return(layer.clip.height); if (ie||dom) { var str = layer.style.clip; if (!str) return(layer.style.height); var clip = getIEClipValues(layer.style.clip); return(clip[2] - clip[0]); } return(-1); } function getIEClipValues(str) { var clip = new Array(); var i; i = str.indexOf("("); clip[0] = parseInt(str.substring(i + 1, str.length), 10); i = str.indexOf(" ", i + 1); clip[1] = parseInt(str.substring(i + 1, str.length), 10); i = str.indexOf(" ", i + 1); clip[2] = parseInt(str.substring(i + 1, str.length), 10); i = str.indexOf(" ", i + 1); clip[3] = parseInt(str.substring(i + 1, str.length), 10); return(clip); } function scrollLayerTo(layer, x, y, bound) { var dx = getClipLeft(layer) - x; var dy = getClipTop(layer) - y; scrollLayerBy(layer, -dx, -dy, bound); } function scrollLayerBy(layer, dx, dy, bound) { var cl = getClipLeft(layer); var ct = getClipTop(layer); var cr = getClipRight(layer); var cb = getClipBottom(layer); if (bound) { if (cl + dx < 0) dx = -cl; else if (cr + dx > getWidth(layer)) dx = getWidth(layer) - cr; if (ct + dy < 0) dy = -ct; else if (cb + dy > getHeight(layer)) dy = getHeight(layer) - cb; } clipLayer(layer, cl + dx, ct + dy, cr + dx, cb + dy); moveLayerBy(layer, -dx, -dy); } function setBgColor(layer, color) { if (isMinNS4) layer.bgColor = color; if (ie||dom) layer.style.backgroundColor = color; } function setBgImage(layer, src) { if (isMinNS4) layer.background.src = src; if (ie||dom) layer.style.backgroundImage = "url(" + src + ")"; } function getLayer(name) { if (isMinNS4) return findLayer(name, document); if (ie) return eval('document.all.' + name); if (dom) return document.getElementById(name); return null; } function findLayer(name, doc) { var i, layer; for (i = 0; i < doc.layers.length; i++) { layer = doc.layers[i]; if (layer.name == name) return layer; if (layer.document.layers.length > 0) { layer = findLayer(name, layer.document); if (layer != null) return layer; } } return null; } function getWindowWidth() { if (isMinNS4||dom) return(window.innerWidth); if (ie) return(document.body.clientWidth); return(-1); } function getWindowHeight() { if (isMinNS4||dom) return(window.innerHeight); if (ie) return(document.body.clientHeight); return(-1); } function getPageWidth() { if (isMinNS4||dom) return(document.width); if (ie) return(document.body.scrollWidth); return(-1); } function getPageHeight() { if (isMinNS4||dom) return(document.height); if (ie) return(document.body.scrollHeight); return(-1); } function getPageScrollX() { if (isMinNS4||dom) return(window.pageXOffset); if (ie) return(document.body.scrollLeft); return(-1); } function getPageScrollY() { if (isMinNS4||dom) return(window.pageYOffset); if (ie) return(document.body.scrollTop); return(-1); } function scrollerSetColors(fgcolor, bgcolor, bdcolor) { if (this.created) { alert("Scroller Error: Scroller has already been created."); return; } this.fgColor = fgcolor; this.bgColor = bgcolor; this.bdColor = bdcolor; } function scrollerSetFont(face, size) { if (this.created) { alert("Scroller Error: Scroller has already been created."); return; } this.fontFace = face; this.fontSize = size; } function scrollerSetSpeed(pps) { if (this.created) { alert("Scroller Error: Scroller has already been created."); return; } this.speed = pps; } function scrollersetPause(ms) { if (this.created) { alert("Scroller Error: Scroller has already been created."); return; } this.pauseTime = ms; } function scrollerAddItem(str) { if (this.created) { alert("Scroller Error: Scroller has already been created."); return; } this.items[this.items.length] = str; } function scrollerCreate() { var start, end; var str; var i, j; var x, y; if (!isMinNS4 && !ie && !dom) return; if (scrollerList.length == 0) setInterval('scrollerGo()', scrollerInterval); if (this.created) { alert("Scroller Error: Scroller has already been created."); return; } this.created = true; this.items[this.items.length] = this.items[0]; start = '' + '
' + ''; end = '
'; if (isMinNS4) { this.baseLayer = new Layer(this.width); this.scrollLayer = new Layer(this.width, this.baseLayer); this.scrollLayer.visibility = "inherit"; this.itemLayers = new Array(); for (i = 0; i < this.items.length; i++) { this.itemLayers[i] = new Layer(this.width, this.scrollLayer); this.itemLayers[i].document.open(); this.itemLayers[i].document.writeln(start + this.items[i] + end); this.itemLayers[i].document.close(); this.itemLayers[i].visibility = "inherit"; } setBgColor(this.baseLayer, this.bdColor); setBgColor(this.scrollLayer, this.bgColor); } if (ie||dom) { i = scrollerList.length; str = '
' + '
'; for (j = 0; j < this.items.length; j++) { str += '
' + start + this.items[j] + end + '
'; } str += '
' + '
'; if (!(ie&&window.print)) { x = getPageScrollX(); y = getPageScrollY(); window.scrollTo(getPageWidth(), getPageHeight()); } if (ie) document.all.tempholder.innerHTML=str else if (dom) document.getElementById("tempholder").innerHTML=str if (!(ie&&window.print)) window.scrollTo(x, y); this.baseLayer = getLayer("scroller" + i + "_baseLayer"); this.scrollLayer = getLayer("scroller" + i + "_scrollLayer"); this.itemLayers = new Array(); for (j = 0; j < this.items.length; j++) this.itemLayers[j] = getLayer("scroller" + i + "_itemLayers" + j); } moveLayerTo(this.baseLayer, this.x, this.y); clipLayer(this.baseLayer, 0, 0, this.width, this.height); moveLayerTo(this.scrollLayer, this.border, this.border); clipLayer(this.scrollLayer, 0, 0, this.width - 2 * this.border, this.height - 2 * this.border); x = 0; y = 0; for (i = 0; i < this.items.length; i++) { moveLayerTo(this.itemLayers[i], x, y); clipLayer(this.itemLayers[i], 0, 0, this.width, this.height); y += this.height; } this.stopped = false; this.currentY = 0; this.stepY = this.speed / (10 / scrollerInterval); this.stepY = Math.min(this.height, this.stepY); this.nextY = this.height; this.maxY = this.height * (this.items.length - 1); this.paused = true; this.counter = 0; scrollerList[scrollerList.length] = this; showLayer(this.baseLayer); } function scrollerShow() { if (this.created) showLayer(this.baseLayer); } function scrollerHide() { if (this.created) hideLayer(this.baseLayer); } function scrollerMoveTo(x, y) { if (this.created) moveLayerTo(this.baseLayer, x, y); } function scrollerMoveBy(dx, dy) { if (this.created) moveLayerBy(this.baseLayer, dx, dy); } function scrollerGetzIndex() { if (this.created) return(getzIndex(this.baseLayer)); else return(0); } function scrollerSetzIndex(z) { if (this.created) setzIndex(this.baseLayer, z); } function scrollerStart() { this.stopped = false; } function scrollerStop() { this.stopped = true; } var scrollerList = new Array(); var scrollerInterval = 2; function scrollerGo() { var i; for (i = 0; i < scrollerList.length; i++) { if (scrollerList[i].stopped); else if (scrollerList[i].paused) { scrollerList[i].counter += scrollerInterval; if (scrollerList[i].counter > scrollerList[i].pauseTime) scrollerList[i].paused = false; } else { scrollerList[i].currentY += scrollerList[i].stepY; if (scrollerList[i].currentY >= scrollerList[i].nextY) { scrollerList[i].paused = true; scrollerList[i].counter = 0; scrollerList[i].currentY = scrollerList[i].nextY; scrollerList[i].nextY += scrollerList[i].height; } if (scrollerList[i].currentY >= scrollerList[i].maxY) { scrollerList[i].currentY -= scrollerList[i].maxY; scrollerList[i].nextY = scrollerList[i].height; } scrollLayerTo(scrollerList[i].scrollLayer, 0, Math.round(scrollerList[i].currentY), false); } } } var origWidth; var origHeight; if (isMinNS4) { origWidth = window.innerWidth; origHeight = window.innerHeight; } window.onresize = scrollerReload; function scrollerReload() { if (isMinNS4 && origWidth == window.innerWidth && origHeight == window.innerHeight) return; window.location.href = window.location.href; } var myScroller1 = new Scroller(0, 0, 353, 215, 0, 0);myScroller1.setColors("#006600", "#FFFFFF", "#009900");myScroller1.setFont("Verdana,Arial,Helvetica", 2);myScroller1.addItem('
Gute Aussichten für den Herbst - Wandern in der Schweiz
Gute Aussichten für den Herbst - Wandern in der Schweiz
REWE Touristik GmbH
gültig: 04.09.2010 - 16.10.2010
Erlebnisreiche Tage im Herbst, aktiv und preiswert im Hotel Bärgsunnu, Saas-Grund. Kinder bis 11 Jahre reisen gratis mit und die Schweiz-Vignette ist bereits im Preis.
Preis ab: 276€
vergrößern
');myScroller1.addItem('
Bayerischer Wald - St. Englmar (2 Ü/FR + Inklusivleistung)
Bayerischer Wald - St. Englmar (2 Ü/FR + Inklusivleistung)
AMEROPA-REISEN GmbH
gültig: 12.07.2010 - 03.10.2010
(Leistung NB6429)
Predigtstuhl Resort / Reisezeitraum: 12.7. bis 3.10.2010
Preis ab: 44€
vergrößern
');myScroller1.addItem('
Ostsee - Rostock-Reutershagen (3 Ü/HP)
Ostsee - Rostock-Reutershagen (3 Ü/HP)
AMEROPA-REISEN GmbH
gültig: 18.09.2010 - 30.12.2010
(Leistung NB6901)
Hotel elbotel *** / Reisezeitraum: 18.9. bis 30.12.2010
Preis ab: 99€
vergrößern
');myScroller1.addItem('
Superselektion Süd (16 Seiten)
Superselektion Süd (16 Seiten)
REWE Touristik GmbH
gültig: TOP AKTUELL
Die Superselektion.- super aktuell- super günstig- super frisch vakanzgeprüft- super zu empfehlen.
Preis ab: 379€
vergrößern
');myScroller1.addItem('
Erzgebirge - Oberwiesenthal (2 Ü/HP + Inklusivleistung)
Erzgebirge - Oberwiesenthal (2 Ü/HP + Inklusivleistung)
AMEROPA-REISEN GmbH
gültig: 06.07.2010 - 30.09.2010
(Leistung NB6606)
AHORN Hotel Am Fichtelberg *** / Reisezeitraum: 6.7. bis 30.9.2010
Preis ab: 69€
vergrößern
');myScroller1.addItem('
Superselektion Ost (16 Seiten)
Superselektion Ost (16 Seiten)
REWE Touristik GmbH
gültig: TOP AKTUELL
Die Superselektion.- super aktuell- super günstig- super frisch vakanzgeprüft- super zu empfehlen.
Preis ab: 379€
vergrößern
');myScroller1.addItem('
NRW unter den Sohlen - Jetzt kennenlernen!
NRW unter den Sohlen - Jetzt kennenlernen!
REWE Touristik GmbH
gültig: 05.09.2010 - 01.11.2010
NRW hat seine Höhen und Tiefen - Wanderer wissen das zu schätzen. Naturbelassene Wege führen durch Wiesen und Wälder, über Mittelgebirgskämme und durch Flusstäler vorbei an historischen Ortskernen.
Preis ab: 159€
vergrößern
');myScroller1.addItem('
Rom: Flug & Hotel Special mit Air Berlin zu Sonderpreisen!
Rom: Flug & Hotel Special mit Air Berlin zu Sonderpreisen!
REWE Touristik GmbH
gültig: 05.09.2010 - 31.10.2010
Entdecken Sie mit ITS und Air Berlin die Stadt der 7 Hügel, die „Ewige Stadt“ inklusive Flug, Hotel und Frühstück ab Düsseldorf, Hamburg, Berlin, Nürnberg oder Münster/Osnabrück zu Sonderpreisen.
Preis ab: 276€
vergrößern
');myScroller1.addItem('
Herbstsonne in Griechenland ab Düsseldorf oder Köln!
Herbstsonne in Griechenland ab Düsseldorf oder Köln!
FTI Frosch Touristik GmbH
gültig: Zielgebiet der Woche
Für viele Reiseziele rund ums Mittelmeer ist jetzt die schönste Jahreszeit.Die griechischen Inseln sind ideal, um noch einmal Sonne für den bevorstehenden Winter zu tanken
Preis ab: 459€
vergrößern
');myScroller1.addItem('
Herbstsonne in Griechenland ab München oder Nürnberg!
Herbstsonne in Griechenland ab München oder Nürnberg!
FTI Frosch Touristik GmbH
gültig: Zielgebiet der Woche
Für viele Reiseziele rund ums Mittelmeer ist jetzt die schönste Jahreszeit.Die griechischen Inseln sind ideal, um noch einmal Sonne für den bevorstehenden Winter zu tanken
Preis ab: 399€
vergrößern
');myScroller1.addItem('
Heide-Park Resort - Soltau (2 Ü/FR, 2 x Eintrittskarten, 1 x Abendessen, Bettwäsche, 1x Park Voucher Booklet)
Heide-Park Resort - Soltau (2 Ü/FR, 2 x Eintrittskarten, 1 x Abendessen, Bettwäsche, 1x Park Voucher Booklet)
AMEROPA-REISEN GmbH
gültig: 30.04.2010 - 30.10.2010
(Leistung NB3710)
Holiday Camp / Reisezeitraum: 30.4. bis 30.10.2010
Preis ab: 89€
vergrößern
');myScroller1.addItem('
Tschechien - Spindler Mühle (2 Ü/HP)
Tschechien - Spindler Mühle (2 Ü/HP)
AMEROPA-REISEN GmbH
gültig: 28.06.2010 - 01.10.2010
(Leistung NB5713)
Hotel Palace Club *** / Reisezeitraum: 28.6. bis 1.10.2010
Preis ab: 39€
vergrößern
');myScroller1.addItem('
Bayerischer Wald - Waldkirchen (3 Ü/HP)
Bayerischer Wald - Waldkirchen (3 Ü/HP)
AMEROPA-REISEN GmbH
gültig: 01.07.2010 - 30.09.2010
(Leistung NB6409)
Landhotel & Appartements Gottinger *** / Reisezeitraum: 1.7. bis 30.9.2010
Preis ab: 99€
vergrößern
');myScroller1.addItem('
Superselektion West (16 Seiten)
Superselektion West (16 Seiten)
REWE Touristik GmbH
gültig: TOP AKTUELL
Die Superselektion. - super aktuell- super günstig- super frisch vakanzgeprüft- super zu empfehlen.
Preis ab: 379€
vergrößern
');myScroller1.addItem('
Dorfhotels - Sylt/Rantum (3 Ü/FR)
Dorfhotels - Sylt/Rantum (3 Ü/FR)
AMEROPA-REISEN GmbH
gültig: 01.11.2010 - 21.12.2010
(Leistung NB3106)
Dorfhotel Sylt / Reisezeitraum: 1.11. bis 21.12.2010
Preis ab: 198€
vergrößern
');myScroller1.addItem('
Nordsee - Wilhelmshaven (2 Ü/FR + Inklusivleistung)
Nordsee - Wilhelmshaven (2 Ü/FR + Inklusivleistung)
AMEROPA-REISEN GmbH
gültig: 04.10.2010 - 31.10.2010
(Leistung NB3123)
COLUMBIA Hotel Wilhelmshaven ****S / Reisezeitraum: 4.10. bis 31.10.2010
Preis ab: 154€
vergrößern
');myScroller1.addItem('
Südtirol - Lana bei Meran (2 Ü/HP)
Südtirol - Lana bei Meran (2 Ü/HP)
AMEROPA-REISEN GmbH
gültig: 29.08.2010 - 14.10.2010
(Leistung NB3604)
Hotel Mondschein *** / Reisezeitraum: 29.8. bis 14.10.2010
Preis ab: 109€
vergrößern
');myScroller1.addItem('
Rügen - Binz (3 Ü/FR + Saunanutzung)
Rügen - Binz (3 Ü/FR + Saunanutzung)
AMEROPA-REISEN GmbH
gültig: 18.09.2010 - 21.12.2010
(Leistung NB6904)
IFA Rügen Hotel & Ferienpark ***S / Reisezeitraum: 18.9. bis 21.12.2010
Preis ab: 99€
vergrößern
');myScroller1.addItem('
Graubünden - Arosa (2 Ü/FR + Inklusivleistung)
Graubünden - Arosa (2 Ü/FR + Inklusivleistung)
AMEROPA-REISEN GmbH
gültig: 11.06.2010 - 17.10.2010
(Leistung NB0703)
Posthotel Arosa *** / Reisezeitraum: 11.6. bis 17.10.2010
Preis ab: 99€
vergrößern
');myScroller1.addItem('
Eifel - Drees (5 Ü im Ferienhaus Klassic 1-5 Personen)
Eifel - Drees (5 Ü im Ferienhaus Klassic 1-5 Personen)
AMEROPA-REISEN GmbH
gültig: 20.08.2010 - 20.11.2010
(Leistung NB6703)
Lindner Ferienpark Nürburgring **** / Reisezeitraum: 20.8. bis 20.11.2010
Preis ab: 158€
vergrößern
');myScroller1.addItem('
Herbstsonne in Griechenland ab Berlin, Dresden oder Leipzig!
Herbstsonne in Griechenland ab Berlin, Dresden oder Leipzig!
FTI Frosch Touristik GmbH
gültig: Zielgebiet der Woche
Für viele Reiseziele rund ums Mittelmeer ist jetzt die schönste Jahreszeit.Die griechischen Inseln sind ideal, um noch einmal Sonne für den bevorstehenden Winter zu tanken
Preis ab: 429€
vergrößern
');myScroller1.addItem('
Bayerischer Wald - Lohberg (4 Ü/HP)
Bayerischer Wald - Lohberg (4 Ü/HP)
AMEROPA-REISEN GmbH
gültig: 28.08.2010 - 15.11.2010
(Leistung NB6427)
Apartmenthotel Schwarzeck *** / Reisezeitraum: 28.8. bis 15.11.2010
Preis ab: 159€
vergrößern
');myScroller1.addItem('
Herbstsonne in Griechenland ab Stuttgart!
Herbstsonne in Griechenland ab Stuttgart!
FTI Frosch Touristik GmbH
gültig: Zielgebiet der Woche
Für viele Reiseziele rund ums Mittelmeer ist jetzt die schönste Jahreszeit.Die griechischen Inseln sind ideal, um noch einmal Sonne für den bevorstehenden Winter zu tanken
Preis ab: 359€
vergrößern
');myScroller1.addItem('
Ostsee - Grömitz (2 Ü/FR)
Ostsee - Grömitz (2 Ü/FR)
AMEROPA-REISEN GmbH
gültig: 19.09.2010 - 31.10.2010
(Leistung NB3203)
Carat Golf- und Sporthotel **** / Reisezeitraum: 19.9. bis 31.10.2010
Preis ab: 99€
vergrößern
');myScroller1.addItem('
Spätsommer an der Goldenen Küste
Spätsommer an der Goldenen Küste
REWE Touristik GmbH
gültig: 18.09.2010 - 30.10.2010
Kilometerlange Sandstrände, ein hervorragendes Klima und zahlreiche Sportund Kulturangebote machen den Urlaub an der Costa Dorada (Costa Daurada)zu einem einzigartigen Erlebnis.
Preis ab: 175€
vergrößern
');myScroller1.setPause(800);function thoschscroll() {var layer;var mikex, mikey;layer = getLayer("placeholder");mikex = getPageLeft(layer);mikey = getPageTop(layer);myScroller1.create();myScroller1.hide();myScroller1.moveTo(mikex, mikey);myScroller1.setzIndex(100);myScroller1.show();}window.onload=thoschscroll