//=============================
function contactButtons() {
   var oStrg = String('');
   oStrg = oStrg.concat('<input type="button" class="contactbutton" value="Visit and Phone" onclick="showContact();"/><br/>');
   //oStrg = oStrg.concat('<input type="button" class="contactbutton" value="Email Us"/><br/>');
   
   document.getElementById('buttonForm').innerHTML = oStrg;
}
//====================================
function showContact() {
   var oStrg = new String('');

   oStrg = oStrg.concat('<font face="Comic Sans MS" color="orange" size="4">'); 
   oStrg = oStrg.concat('<b>Our office hours are:</b><br/>');
   oStrg = oStrg.concat('</font>');

   oStrg = oStrg.concat('<font face="Comic Sans MS" color="green" size="4">');
   oStrg = oStrg.concat('&nbsp;&nbsp;&nbsp;Monday  12:00 noon to 6:00 pm <br/>');
   oStrg = oStrg.concat('&nbsp;&nbsp;&nbsp;Tuesday to Friday 9:15 am to 6:00 pm');
   oStrg = oStrg.concat('</font>');

   oStrg = oStrg.concat('<font face="Comic Sans MS" color="orange" size="4">'); 
   oStrg = oStrg.concat('<br/><br/><b>How to contact us:</b><br/>');
   oStrg = oStrg.concat('</font>');

   oStrg = oStrg.concat('<font face="Comic Sans MS" color="green" size="4">');
   oStrg = oStrg.concat('We are a very small clinic and have only two people. Nancy provides the treatment ');
   oStrg = oStrg.concat('and Winnie, Nancy&#39;s business partner, does everything else, ');
   oStrg = oStrg.concat('including the design and development of this web site. ');
   oStrg = oStrg.concat('The best way to contact us is to call our office. ');
   oStrg = oStrg.concat('Winnie answers all the calls. If the line is busy, ');
   oStrg = oStrg.concat('please leave a voice message. She will call you back as soon as she can. ');
   oStrg = oStrg.concat('<br/><br/>');

   oStrg = oStrg.concat('Winnie answers questions concerning patient referral, appointments, ');
   oStrg = oStrg.concat('insurance coverage, billing, general questions about our treatment plan ');
   oStrg = oStrg.concat('and any other general questions. She will not answer specific questions ');
   oStrg = oStrg.concat('about any patient. ');
   oStrg = oStrg.concat('<br/><br/>');

   oStrg = oStrg.concat('Since Nancy Glass-Quattrin is our only provider, she is busy treating patients and only has time to ');
   oStrg = oStrg.concat('answer calls from physicians and current patients&#39; parents. If the line is busy, ');
   oStrg = oStrg.concat('please leave a voice message. Most days, Nancy will return phone calls at the end of the day ');
   oStrg = oStrg.concat('after 6:30 pm. If it is a simple answer, she may give it to Winnie to ');
   oStrg = oStrg.concat('call back. ');
   oStrg = oStrg.concat('<br/><br/>');

   oStrg = oStrg.concat('Due to the high volume of requests for information from all over the U.S., ');
   oStrg = oStrg.concat('we are unable to personally return phone calls from out of state\/country ');
   oStrg = oStrg.concat('unless you are interested in making an appointment or schduling a phone consultation. ');
   oStrg = oStrg.concat('We do provide services to out of state patients. ');
   oStrg = oStrg.concat('<br/><br/>');

   oStrg = oStrg.concat('The best place to find resources locally would be the nearest children&#39;s ');
   oStrg = oStrg.concat('hospital, a hospital with a pediatric gastroenterologist, or a hospital affiliated ');
   oStrg = oStrg.concat('with a university that has a pediatrics department. We know of just a ');
   oStrg = oStrg.concat('few treatment centers that are university based and of course don&#39;t ');
   oStrg = oStrg.concat('know which pediatrician in your area is familiar with encopresis management. ');
   oStrg = oStrg.concat('Asking your child&#39;s pediatrician for a pediatric gastroenterologist might be ');
   oStrg = oStrg.concat('of some help. Please note that we cannot recommend treatment for a child ');
   oStrg = oStrg.concat('who is not our patient. ');
   oStrg = oStrg.concat('</font>');
   
   oStrg = oStrg.concat('<font face="Comic Sans MS" color="orange" size="4">'); 
   oStrg = oStrg.concat('<br/><br/><b>How to make an appointment:</b><br/>');
   oStrg = oStrg.concat('</font>');
    
   oStrg = oStrg.concat('<font face="Comic Sans MS" color="green" size="4">');
   oStrg = oStrg.concat('Every patient must be referred by the primary physician. Referrals come ');
   oStrg = oStrg.concat('from two different methods: <br/>');
   oStrg = oStrg.concat('&nbsp;&nbsp;&nbsp;1. The primary physician tells the parents to call us. <br/>');
   oStrg = oStrg.concat('&nbsp;&nbsp;&nbsp;2. The primary physician calls our office or faxes us a referral. <br/>');
   oStrg = oStrg.concat('Upon receiving a referral from the primary physician, Winnie will ');
   oStrg = oStrg.concat('contact the parents within a few days to set up an appointment. If she cannot ');
   oStrg = oStrg.concat('get hold of the parents, she will leave a voice message two times a few days apart. ');
   oStrg = oStrg.concat('If she does not hear back from the parents after leaving two voice messages, ');
   oStrg = oStrg.concat('she will file the referral information until we are ');
   oStrg = oStrg.concat('contacted by the parents. ');
   oStrg = oStrg.concat('</font>');

   document.getElementById('contentArea').innerHTML = oStrg;
   document.getElementById('bottomArea').innerHTML = "";

}
