function LeeContainer(config){
	if (this.conDiv) {
	} else {
		this.conDiv=document.createElement("div");
		this.conDiv.className="outer_div";
		SE_Function.setOpacity(this.conDiv, 0.7);
		
		this.outerw=document.createElement("div");
		this.outerw.className="outer_win";
		
		this.titleDiv=document.createElement("div");
		this.outerw.appendChild(this.titleDiv);
		
		this.innerContainer = document.createElement("div");
		this.outerw.appendChild(this.innerContainer);
		SE_Function.setCssText(this.innerContainer, 'width:100%;height:100%;background-color:#fff;');
		
		SE_Function.setCssText(config.div, 'height:100%;display:block;')
		
		this.innerContainer.appendChild(config.div);
		this.titleDiv.style.position="relative";
		SE_Function.setCssText(this.titleDiv, 'background:#dcdcdc;');
		var innerH='<div class="search_result_div"><img src="/img/close_c.jpg" title="关闭"/></div>';
		var tempDiv=document.createElement("div");
		tempDiv.innerHTML=innerH;
		config.titleDiv.style.display="block";
		tempDiv.getElementsByTagName("div")[0].appendChild(config.titleDiv);
		this.titleDiv.appendChild(tempDiv.getElementsByTagName("div")[0]);
		
		SE_Event.bind(this.titleDiv.getElementsByTagName("div")[0].getElementsByTagName("img")[0],"click",this,this.closePlaceDiv);
		
		document.body.appendChild(this.conDiv);
		document.body.appendChild(this.outerw);
		this.conDiv.style.zIndex=10000;
		this.outerw.style.zIndex=10001;
		this.closeNone();
	}
}
LeeContainer.prototype.open=function() {
	this.conDiv.style.display="block";
	this.outerw.style.display="block";
}
LeeContainer.prototype.closePlaceDiv=function() {
	this.closeNone();
}
LeeContainer.prototype.closeNone = function() {
	this.conDiv.style.display="none";
	this.outerw.style.display="none";
}
