/** Functions for stats in Kadmin **/

function show_hide_details(id) {
	if ( document.getElementById("details_" + id)) {
		if (document.getElementById("details_" + id).style.display == "block") {
			document.getElementById("details_" + id).style.display = "none";
		}
		else {
			document.getElementById("details_" + id).style.display = "block";
		}
	}
}