

function show_question(hid)
{
	$("#question_div").remove();

	add_question_div = document.createElement('div');
	jQuery(add_question_div)
			.attr({id:'question_div'})
			.addClass("question_panel");

	$("#id_"+hid).after(add_question_div);


	try {
		$("#question_div").ajaxStart(function(){
			  $(this).load("/loading.html");
		});

		$.ajax({ url: "?module=help",
              type:"POST",           
             dataType:"html",
             data: "do=load&id="+hid,
             success:function(msg){
							$("#question_div").html(msg);
								} 
         });
	} catch (ee) {
	}

}


$(document).ready(
	function () {
		if ( this.location.hash )
		{
			hid = this.location.hash.substring(4);
			show_question(hid);
		}
	}
);