--- loncom/interface/lonfeedback.pm	2004/07/23 16:56:29	1.103
+++ loncom/interface/lonfeedback.pm	2004/07/24 18:13:04	1.105
@@ -1,7 +1,7 @@
 # The LearningOnline Network
 # Feedback
 #
-# $Id: lonfeedback.pm,v 1.103 2004/07/23 16:56:29 albertel Exp $
+# $Id: lonfeedback.pm,v 1.105 2004/07/24 18:13:04 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -864,11 +864,6 @@ END
   }
   my $latexHelp=&Apache::loncommon::helpLatexCheatsheet();
   my $htmlheader=&Apache::lonhtmlcommon::htmlareaheaders();
-  my $onsubmit='';
-  if ((&Apache::lonhtmlcommon::htmlareabrowser()) &&
-      (!&Apache::lonhtmlcommon::htmlareablocked())) {
-      $onsubmit='document.mailform.onsubmit();';
-  }
   my $send=&mt('Send');
   $r->print(<<END);
 <html>
@@ -912,7 +907,9 @@ $htmlheader
         }
 
         if (rec) {
-            $onsubmit
+            if (typeof(document.mailform.onsubmit)!='undefined') {
+		document.mailform.onsubmit();
+	    }
 	    document.mailform.submit();
         } else {
             alert('Please check a feedback type.');
@@ -1764,7 +1761,7 @@ sub generate_preview_button {
 <input type="hidden" name="subject">
 <input type="hidden" name="comment" />
 <input type="button" value="$pre"
-onClick="document.mailform.onsubmit();this.form.comment.value=document.mailform.comment.value;this.form.subject.value=document.mailform.subject.value;this.form.submit();" />
+onClick="if (typeof(document.mailform.onsubmit)!='undefined') {document.mailform.onsubmit();};this.form.comment.value=document.mailform.comment.value;this.form.subject.value=document.mailform.subject.value;this.form.submit();" />
 </form>
 ENDPREVIEW
 }