// JavaScript Document

//script to hide and show a div
function hide_show_div(div_id)
{
	var curr_div = document.getElementById(div_id);
	var curr_action = "";
	if (curr_div.style.display == "none")
	{
		curr_action = "block";
	} else
	{
		curr_action = "none";
	}
	$(".upload_bar").css("display", "none");
	curr_div.style.display = curr_action;
}
