    #POP_background{  
      position: fixed; 
      top: 0px; 
      left: 0px; 
      width: 100%; 
      height: 100%;  
      z-index: 101;
      background-color:#000;
	  filter:alpha(opacity=75);
	  -moz-opacity: 0.75;
	  opacity: 0.75;
      display: none;
    }
    
    #POP_window{
      position: fixed;
      width: 700px;
      height: 360px;
      top: 50%;
      left: 50%;
      background: #fff;
      border: 4px solid #525252;
      display: none;
      z-index: 102;
      margin-left: -350px;
      margin-top: -180px;
      padding: 5px;
    }
    
    * html #POP_background { /* ie6 hack */
      position: absolute;
      height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
    }
    
    * html #POP_window { /* ie6 hack */
      position: absolute;
      margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
    }
    
    #topBar{
      height: 27px;
      margin-top: -35px;
	  margin-bottom: 8px;
    }
    
    #topBar a{
      display: block;
      float: right;
      padding: 0px;
      margin: 0px;
      color: #fff;
      font-size: 12px;
      margin: 5px;
    }
    
    #topBar a:hover{
      font-weight: bold;
    }    