function processemail() {

   var index = document.emailform.subject.selectedIndex;
   var subject = document.emailform.subject.options[index].text;
   var name = escape(document.emailform.thename.value);
   var email = escape(document.emailform.email.value);
   var message = escape(document.emailform.message.value);

   var cmd = "mailto:bodin@austin.rr.com?subject=" + name + ", " + subject +
       "&body=Name: " + name + "%0D%0A" +
             "Email: " + email + "%0D%0A%0D%0A" + message; 

   document.location=cmd;
}
