//====================================
function NancyPicture() { 
   var oStrg = new String('');
   oStrg = oStrg.concat('<image src="Nancy_01.jpg" width="225" height="338" >');
   //oStrg = oStrg.concat('<image src="Nancy_02.jpg" width="338" height="225" >');
   document.getElementById('buttonForm').innerHTML = oStrg;
}
//====================================
function NancyText() {
   var oStrg = new String('');
   var iStrg = new String('');

   oStrg = oStrg.concat('<font face="Comic Sans MS" color="orange" size="4">'); 
   oStrg = oStrg.concat('<b>Nancy Glass-Quattrin, RN, BSN, BCIAC</b><br/>');
   oStrg = oStrg.concat('</font>');

   oStrg = oStrg.concat('<font face="Comic Sans MS" color="green" size="3">');
   oStrg = oStrg.concat('Nancy is the founder and President of the Encopresis Treatment Center ');
   oStrg = oStrg.concat('where she is the sole provider of treatment for encopretic children. ');
   oStrg = oStrg.concat('She has over 20 years experience and extensive training in the ');
   oStrg = oStrg.concat('treatment of bowel and bladder problems, both in adults and children. '); 
   oStrg = oStrg.concat('She has been working with encopretic children since 1995 when she was ');
   oStrg = oStrg.concat('a nurse in the Encopresis Clinic at Seattle Children&#39;s Hospital. ');
   oStrg = oStrg.concat('When the Encopresis Clinic closed in December of 1999,   Nancy made ');
   oStrg = oStrg.concat('the decision to continue to treat encopretic children since there were ');
   oStrg = oStrg.concat('no other dedicated resources available in the community for managing ');
   oStrg = oStrg.concat('this distressing condition. ');
   oStrg = oStrg.concat('</font><br/><br/>');

   oStrg = oStrg.concat('<font face="Comic Sans MS" color="green" size="3">'); 
   oStrg = oStrg.concat('She has long enjoyed working with children and their families ');
   oStrg = oStrg.concat('who struggle with this poorly understood and commonly under-treated ');
   oStrg = oStrg.concat('and misdiagnosed childhood problem.  Her diverse background allows ');
   oStrg = oStrg.concat('Nancy to have a comprehensive approach in treating children and ');
   oStrg = oStrg.concat('helping families overcome this increasingly common but challenging ');
   oStrg = oStrg.concat('to manage medical problem. ');
   oStrg = oStrg.concat('</font>');

   iStrg = iStrg.concat('<font face="Comic Sans MS" color="orange" size="3">'); 
   iStrg = iStrg.concat('<I><b>Education: </b></I></font>');
   iStrg = iStrg.concat('<font face="Comic Sans MS" color="green" size="3">'); 
   iStrg = iStrg.concat('Seattle University School of Nursing, BSN </font><br/>');

   iStrg = iStrg.concat('<font face="Comic Sans MS" color="orange" size="3">'); 
   iStrg = iStrg.concat('<I><b>Current Board Certifications: </b></I></font>');
   iStrg = iStrg.concat('<font face="Comic Sans MS" color="green" size="3">'); 
   iStrg = iStrg.concat('Biofeedback Certification Institute of America </font><br/>');

   iStrg = iStrg.concat('<font face="Comic Sans MS" color="orange" size="3">'); 
   iStrg = iStrg.concat('<I><b>Past Board Certifications: </b></I></font>');
   iStrg = iStrg.concat('<font face="Comic Sans MS" color="green" size="3">'); 
   iStrg = iStrg.concat('ANA Certification in Psychiatric and Mental Health Nursing </font>');

   iStrg = iStrg.concat('</font>');

   document.getElementById('contentArea').innerHTML = oStrg;
   document.getElementById('bottomArea').innerHTML = iStrg;

}
