// JavaScript Document written for webKRAVE, a division of the KRAVE Media Group Corporation.

function show_hide_menu(menu_id,rows){
	// determine if it's already showing or hiding
	var which = document.getElementById(menu_id);
	if(which.style.display=="none"){
		which.style.display="block";
	}else{
		which.style.display="none";
	}
}