function icomm_ansver_form(commentid) {
	var jansverbox=$('#ansverform_'+commentid);
	if ($('form', jansverbox).size() == 0) {
		jansverbox.html($('#addform').html());
		$('form', jansverbox).prepend('<input type="hidden" name="parent" value="'+commentid+'" />');
	}
	jansverbox.toggle();
	return false;
}