OverlayMessage=function(i){var o=this;var l=i.parentNode;var I=document.createElement('div');I.style.cssText=i.style.cssText;l.insertBefore(I,i);l.removeChild(i);I.appendChild(i);i.style.cssText='position: relative; width: 100%; height: 100%;';o.overlay=document.createElement('div');I.appendChild(o.overlay);o.visibleStyle='position: relative; top: -55%; background-color: '+OverlayMessage.backgroundColor+'; width: 40%; text-align: center; margin-left: auto; margin-right: auto; padding: 2em; border: 0.08in ridge '+OverlayMessage.borderColor+'; z-index: 100; opacity: .75; filter: alpha(opacity=75);';o.invisibleStyle='display: none;';o.overlay.style.cssText=o.invisibleStyle};OverlayMessage.backgroundColor='#9999cc';OverlayMessage.borderColor='#666699';OverlayMessage.prototype.Set=function(i){var I=this;I.overlay.innerHTML=i;I.overlay.style.cssText=I.visibleStyle};OverlayMessage.prototype.Clear=function(){var i=this;i.overlay.style.cssText=i.invisibleStyle};OverlayMessage.SetBackgroundColor=function(i){OverlayMessage.backgroundColor=i};OverlayMessage.SetBorderColor=function(i){OverlayMessage.borderColor=i};