function showHideLayer(section){
	var showHideObj = document.getElementById(section);
	if(showHideObj.style.display != 'block'){
		showHideObj.style.display = 'block';
	}else{
		showHideObj.style.display = 'none';
	}
}

