//This is where we will put any additional Javascript
//that we want in all pages.


//*To show Details in a table*//
function show_obj(obj_id) {
		document.getElementById(obj_id).className="displayed";
	}

function hide_obj(obj_id) {
                document.getElementById(obj_id).className="hidden";
	}
		

