Austria Haus Hotel   
242 E Meadow Dr
Vail, CO 81657

|
from $229.00* Special Internet Rate
Book online or call 1-800-761-3936
|

|
Brief Summary
Location. The Austria Haus Hotel In Vail, Colo., Is Positioned Near Gore Creek And Steps From The European Style Vail Village And A Local Fine Arts Museum. The Gondolas Are Within Walking Distance Or A Quick Trip Via Shuttle, 500 Yards Away. Nearby Ski Resort Beaver Creek Is Within 13 Miles Of This Hotel. More Shopping Is Available Within A Few Blocks. Hotel Features. A Complimentary Continental Breakfast Is Served Each Morning. Boutique Cafes And Bistro Style Eateries Are Within Walking Distance. Complimentary Ski Storage And Shuttle Service Is Also Provided. The Hotel Offers An Outdoor Pool, Spa Tub And Fitness Equipment. Complimentary Wireless Internet Access Is Provided Throughout The Hotel.
Guestrooms. Contemporary European Furnishings And Decor Are Available In 19 Guestrooms And Six Suites. Set Upon Four Stories, All Rooms Are Accessible Via Interior Corridors With Elevators And Include Cable Television With Premium Channels, Dvd And Vcr Players. Suites Feature Separate Living And Sitting Room Areas With Fireplaces And Air Conditiong. In Room Massage Service Is Also Available.
Expert Tip. Among The Best Collection Of Bars And Nightlife Is Located On Bridge Street, Between Hanson Ranch Road And Gore Creek. Area Locals And Ski Patrollers Favor Such Places As Vendetta's And The Red Lion. The Adjacent Tap Room Offers Drinks On Its First Floor And A Discotech One Floor Above.
Cheap hotels and hotel reservations in Vail. Book your hotel now and save!
Worldwide deals on travel, vacations, hotel rooms and more.
|
';
cal += '';
cal += '' + TR_start;
cal += '| ';
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 += ' | |
';
cal += '';
cal += '';
cal += ' |