function show_hide(elem_id)
{
	if($(elem_id).style.display == "none") 
		$(elem_id).style.display = "";
	else
		$(elem_id).style.display = "none";
}
