
OverlayMessage=function(container)
{var parent=container.parentNode;var wrapper=document.createElement('div');wrapper.style.cssText=container.style.cssText;parent.insertBefore(wrapper,container);parent.removeChild(container);wrapper.appendChild(container);container.style.cssText='position: relative; width: 100%; height: 100%;';this.overlay=document.createElement('div');wrapper.appendChild(this.overlay);this.backgroundColor='#ff9348';this.borderColor='#ff6600';this.overlay.style.color='#ffffff';this.overlay.style.position='relative';this.overlay.style.top='-55%';this.overlay.style.backgroundColor=this.backgroundColor;this.overlay.style.width='40%';this.overlay.style.textAlign='center';this.overlay.style.marginLeft='auto';this.overlay.style.marginRight='auto';this.overlay.style.padding='2em';this.overlay.style.borderWidth='0.08in';this.overlay.style.borderStyle='solid';this.overlay.style.borderColor=this.borderColor;this.overlay.style.zIndex='100';this.overlay.style.opacity='.75';this.overlay.style.filter='alpha(opacity=75)';this.overlay.style.display='none';};OverlayMessage.prototype.Set=function(message)
{this.overlay.innerHTML=message;this.overlay.style.display='';};OverlayMessage.prototype.Clear=function()
{this.overlay.style.display='none';};OverlayMessage.prototype.SetBackgroundColor=function(color)
{this.backgroundColor=this.overlay.style.backgroundColor=color;};OverlayMessage.prototype.SetBorderColor=function(color)
{this.borderColor=this.overlay.style.borderColor=color;};
