function questreply(a) {
	q = "questreply" + a;
	document.getElementById(q).innerHTML = '<form method="POST"><input name="qid" type="hidden" value="' + a + '">' +
	'<table class="tabstyle tabcenter"><tr><td class="center" style="font-weight:bold;">Введите свой ответ</td></tr><tr><td align="center"><textarea id="textans" rows="10" name="sans" cols="60"></textarea></td></tr>'+
	'<tr><td align="center"><input type="submit" value="Ответить" name="go"></td></tr></table></form>';
	tinyMCE.init({
		mode : "textareas",
		language : "ru",
		theme : "advanced",
		elements : "textans",
		theme_advanced_buttons1 : "bold,italic,underline,separator,strikethrough,justifyleft,justifycenter,justifyright,justifyfull,forecolor,bullist,numlist,undo,redo,link,unlink",
	   theme_advanced_buttons2 : "",
	   theme_advanced_buttons3 : "",
	   theme_advanced_toolbar_location : "top",
	   theme_advanced_toolbar_align : "left",
	   theme_advanced_statusbar_location : "bottom",
	   plugins : "inlinepopups"
	});
}

