function ShowForumForm(Question){
	var QLen = Question.length;
	var QuestionNo = Question.substring(8,QLen);

	var e=document.getElementById('Answer' + QuestionNo);
	
	var f = document.getElementById("forumForm");
	f.style.display = e.style.display;
	
}