// Breite des Tickers var ntv_height = 300; // Grössere Zahlen -> langsamer var ntv_speed = 20; var ntv_step = 1; // Positionsangaben des Tickers var posLeftV = 0; var posRightV = 0; var posTopV = 0; var posBottomV = 0; // Content aus Datenbank holen var ntv_content = '
---
Are you thinking of spending your next vacation in South Tyrol, maybe in a comfortable and peaceful hotel?

The "Weisses Lamm" awaits you with open arms! Holidays in Welsberg mean great weather, marvellous landscape and high mountain peaks.

Many greetings
Family Heiss

Dear guests!

The Dolomites have been added to UNESCO’s World Heritage List
Since Friday, June 26th 2009, the Dolomites have become part of the renowned World Heritage List. The decision was taken during UNESCO’s World Heritage Committee’s yearly session in Seville, Spain.

The incomparable beauty of the Dolomites convinced UNESCO, as it also did the great poet Goethe, extreme climber Reinhold Messner and famous architect Le Corbusier. Pinnacles, ridges and rock walls glow deeply red in the evening sun, and change from orange to violet until the dark of night has set upon the mountains. The unique composition of the Dolomite rock allows this socalled “enrosadira” or “Alpenglow”, a sheer wonder of nature.

The World Heritage request for the Dolomites covers areas in 5 provinces. In South Tyrol, they comprise the „Bletterbach“, the Natural Parks Fanes-Sennes-Prags, Trudner Horn, Puez-Geisler, Schlern-Rosengarten, Latemar, and the Dolomites of Sesto/Sexten with the Three Peaks. Most of these areas are very spectacular with their vertical walls, cliffs, extreme differences in altitude, significant geomorphology, large high-altitude areas and pastureland.

Until now, only the Aeolian Islands have received this distinction in Italy.

We\'ll welcome you in our hotel in the middle of our beautiful Dolomites ....... the most beautiful mountain landscape in the world


Yours faithfully
Heiss family


---
'; var ntv_textheight = 0 var ntv_timer = 0; var ntv_clipleft = 0; var ntv_clipright = 0; var ntv_cliptop = 0; var ntv_clipbottom = 15; var ntv_dom = document.all || document.getElementById; var ntv_actualtop = 0; function fctSetContentVertical(p_leftv, p_topv, p_widthv, p_heightv) { posLeftV = p_leftv; posRightV = posLeftV + p_widthv; posTopV = 0; posBottomV = p_heightv; ntv_width = p_widthv; ntv_clipbottom = p_heightv; if(ntv_dom) { document.getElementById("eu_ntContentVertical").innerHTML = ntv_content; document.getElementById("eu_ntContentVertical").style.top = posBottomV + "px"; ntv_actualtop = posBottomV; } else { document.eu_ntContentVertical.document.write(''+ntv_content); document.eu_ntContentVertical.document.close(); ntv_textwidth = document.eu_ntContentVertical.document.height; document.eu_ntContentVertical.top = posBottomV; } if(document.all) { ntv_speed = 20; } else { ntv_speed = 40; } setInterval( "fctScrollVertical()", ntv_speed ); } function fctScrollVertical() { if(ntv_dom) { if(document.all) { ntv_textheight = document.getElementById("eu_ntContentVertical").scrollHeight; } else { ntv_textheight = document.getElementById("eu_ntContentVertical").offsetHeight; } if (ntv_actualtop >= posTopV - ntv_textheight) { ntv_actualtop -= ntv_step; document.getElementById("eu_ntContentVertical").style.top = ntv_actualtop + "px"; } else { document.getElementById("eu_ntContentVertical").style.top = posBottomV + "px"; ntv_actualtop = posBottomV; } } else { if (document.eu_ntContentVertical.top >= posTopV - ntv_textheight) { document.eu_ntContentVertical.top -= ntv_step; document.eu_ntContentVertical.clip.bottom += ntv_step; if (document.eu_ntContentVertical.clip.top > ntv_height) { document.eu_ntContentVertical.clip.bottom += ntv_height; } var ntv_timer=setTimeout("fctScrollVertical()",ntv_speed); } else { document.eu_ntContentVertical.top = posBottomV; document.eu_ntContentVertical.clip.top = 0; document.eu_ntContentVertical.clip.bottom = 0; fctScrollVertical(); } } }