--- loncom/homework/response.pm	2008/06/14 20:16:57	1.193
+++ loncom/homework/response.pm	2008/09/04 14:41:04	1.196
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # various response type definitons response definition
 #
-# $Id: response.pm,v 1.193 2008/06/14 20:16:57 www Exp $
+# $Id: response.pm,v 1.196 2008/09/04 14:41:04 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -523,6 +523,7 @@ sub start_mathresponse {
 sub edit_mathresponse_button {
     my ($id,$field)=@_;
     my $button=&mt('Edit Answer');
+    my $helplink=&Apache::loncommon::help_open_topic('Formula_Editor');
     return(<<ENDFORMULABUTTON);
 <script language="JavaScript">
 function edit_${id}_${field} (textarea) {
@@ -531,7 +532,8 @@ function edit_${id}_${field} (textarea)
     newwin = window.open("/adm/dragmath/applet/MaximaPopup.html","","width=565,height=400,resizable");
 }
 </script>
-<input type='button' value='$button' onclick="javascript:edit_${id}_${field}('${field}');void(0);" />
+<a href="javascript:edit_${id}_${field}('${field}');void(0);"><img src='$Apache::lonnet::perlvar{'lonIconsURL'}/stift.gif' /></a>
+<input type='button' value='$button' onclick="javascript:edit_${id}_${field}('${field}');void(0);" />$helplink
 ENDFORMULABUTTON
 }