
	function show_hide(id, action){
		var obj = document.getElementById( id );
		
		if( action == "show" )
			obj.style.display = "block";
		else
			obj.style.display = "none";
	}