public function ajaxcontactusAction()
 {
     if ($_POST) {
         if ($id = FM_Components_Email::insertEmail($_POST)) {
             $org = new FM_Components_Organization(array('id' => $_POST['orgId']));
             $user = new FM_Components_Member(array('id' => $org->getAdminId()));
             $headers = 'MIME-Version: 1.0' . "\r\n";
             $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
             $headers .= 'From:' . $org->getName() . '  @ 4Monmouth.com' . "\r\n" . 'Reply-To: nobody@4monmouth.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion();
             //print $user->getEmail();
             mail($user->getEmail(), 'You recieved an email from your 4monmouth miniweb', FM_Components_EmailFormatter::contactUs($_POST), $headers);
             mail($_POST['email'], 'Your question has been submitted', FM_Components_EmailFormatter::contactUs($_POST), $headers);
             print 'Your email has been sent. You should expect a response within 24 - 48 hours.';
         } else {
             print 'Your email failed to send. Please try again';
         }
     }
     exit;
 }