function tacter(mailbox)
{
 $("#to").val(mailbox);
 var helpy;
 if(mailbox == "pharm")
 {
   helpy = "Inquire About Mail Orders";
 }
 if(mailbox == "clinic")
 {
   helpy = "Email The Clinic Manager";
 }
 if(mailbox == "bill")
 {
   helpy = "Ask About Billing or Insurance";
 }
 if(mailbox == "records")
 {
   helpy = "Inquire About Medical Records";
 }
 if(mailbox == "info")
 {
   helpy = "Request General Information";
 }
 if(mailbox == "tori")
 {
   helpy = "Email Dr. Hudson";
 }
 if(mailbox == "karen")
 {
   helpy = "Email Karen Hudson";
 }
 if(mailbox == "wendy")
 {
   helpy = "Email Dr. Vannoy";
 }
 if(mailbox == "leigh")
 {
   helpy = "Email Dr. Lewis";
 }
 if(mailbox == "carrie")
 {
   helpy = "Email Dr. Skinner";
 }
 if(mailbox == "kellie")
 {
   helpy = "Email Dr. Raydon-Feeney";
 }
 if(mailbox == "barb")
 {
   helpy = "Email Dr. MacDonald";
 }
 if(mailbox == "kaplan")
 {
   helpy = "Email Dr. Kaplan";
 }
 if(mailbox == "theresa")
 {
   helpy = "Email Theresa Baisley";
 }

 $("#tbone").replaceWith("<div id='tbone'><h3>" + helpy + "</h3></div>");
 window.scrollTo(0,0);
 $("#hider").hide("slow", function(){$(".tactbox").show("slow");});
 return false;
}

function send()
{
 //$.post("php/send2.php", {from: $("#from").val() , message: $("#message").val() , to: $("#to").val()}, function(){alert("Message sent!");});
 //alert("Message sent!");
 $.ajax({
   type: "POST",
   url: "php/send2.php",
   data: "from=" + $("#from").val() + "&message=" + $("#message").val() + "&to=" + $("#to").val(),
   success: function(msg){
     alert( " Message Sent! " );
     $("#message").val("");
   },
   error: function(msg){
     alert( "Error: " + msg.status  );
   }
 });

 $(".tactbox").hide("slow", function(){$("#hider").show("slow");});
 return false;
}

function closemailer()
{
 $(".tactbox").hide("slow", function(){$("#hider").show("slow");});
}