var showDivId="";
var showType=true;
document.onclick = function ss(){
	if(showType == false){showType = true; return}
	if(showDivId!=""){
		document.getElementById(showDivId).style.display = 'none';}
} 

function clicks(div_id){
	if(showDivId!=""){
		document.getElementById(showDivId).style.display = 'none';}
	var _div = document.getElementById(div_id);
	if(_div.style.display=='none'){
		_div.style.display='block'; 
		showType = false;
		showDivId=div_id;
	}
	else{
		_div.style.display = 'none';}
}
