
  function sendMail(_f) {
    //var _f=document.registerform;
    //alert(_f.Source.value );
    //if (document.forms[0].recipient.value == "") {
    //   alert("No recipient has been specified!");
    //   return false;
    //}
    //if (_f.Name.value == "") {
    //   alert("Please enter your name!");
    //   return false;
    //}
    //if (_f.Email.value == "") {
    //   alert("Please enter an E-mail Address where we can contact you!");
    //   return false;
    //}
    //if (_f.Classes.value == "") {
    //   alert("Please enter the title and date of the events you are interested in!");
    //   return false;
    //}
    //if (document.forms[0].subject.value == "") {
    //   document.forms[0].subject.value = "No subject";
    //   return false;
    //}
	
	//var _f=document.contactform;
    //var _e=_f.recipient.value;
    //var _s=_f.subject.value?"?subject="+_f.subject.value:"";
    //var _b=_f.message.value?"body="+_f.message.value:"";
    //if(_s&&_b) _b="&"+_b; else if(_b)_b="?"+_b;
    //if(_e)
     //_f.action="MAILTO:"+_e;+_s+_b;
     //document.location="mailto:"+_e+_s+_b;
    //return _e?true:false;
  
    // Construct a mailto: URL with all the details:
    _f.action = "mailto:info@appliedbehavioralconcepts.net" + 
                    //document.forms[0].recipient.value +
                    "?subject=" + _f.Source.value 
					+ "&bcc=sally@zio.com"
                    //document.forms[0].subject.value;//+_b;
    return true;
  }

