
			
function show_content(show_content) {
	
	document.getElementById('show_more_content').innerHTML = show_content;
	document.getElementById("show_more_content").style.display="block";
	
}


function no_show_content() {
	
	document.getElementById("show_more_content").style.display="none";
	
	
}