/* Course script

Greg Saunders (saunders@west.cmu.edu)
Copyright 2003, Carnegie Mellon University

Change log:
  05/29/2003 - gms - created

*/

function contactMentor(subject){
  var mentorEmailAddress = "mentor@epa.gov";
  alert("Email submission is not currently enabled.  Please contact your mentor directly.");
//  setURL("mailto:" + mentorEmailAddress + "?subject=" + escape(subject));
}

function contactMentor2(subject){
  contactMentor(subject);
}

