﻿document.write('<div style="width: 248px; position: relative;">' +    '<a href="http://www.qwestarenaidaho.com" id="qwest-events">' +        '<img src="http://www.qwestarenaidaho.com/grove-hotel/images/btn_event-home.gif" alt="View Qwest Arena Events" style="border: 0; width: 247px; height: 53px;" />' +    '</a>' +    '<div id="calendar" style="display: none; width: 248px; height: 220px; position: absolute; top: 65px; left: 0; margin: 0; padding: 0;">' +         '<iframe scrolling="no" style="width: 248px; height: 220px; position: relative; top: 0; left: 0; margin: 0; padding: 0;" frameborder="0" src="http://www.qwestarenaidaho.com/grove-hotel/calendar.html"></iframe>' +    '</div>' +    '<a href="http://www.grovehotelboise.com" id="close-qwest-events" style="position: absolute; top: 52px; right: -12px; width: 24px; height: 24px; text-decoration: none; display: none; background: url(http://www.qwestarenaidaho.com/grove-hotel/images/btn_close.png) no-repeat;"><span style="display: none;">close</span></a>' + '</div>');var eventButton = document.getElementById('qwest-events');var eventCalendar = document.getElementById('calendar');var closeButton = document.getElementById('close-qwest-events');eventButton.onclick = function(ev){    this.blur();    eventCalendar.style.display = 'block';    closeButton.style.display = 'block';    return false;}closeButton.onclick = function(ev){    eventCalendar.style.display = 'none';    closeButton.style.display = 'none';    return false;}