<!-- Begin
// ****************************************************//
// File name:  sidebar-right-appt.js
// Date:  7/9/09
// Purpose:  Used on the Appointment Page
// Changes: Heather Olsen
// ****************************************************//



// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var paragraph_1 	= "yes"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "yes"		// SHOW THE 2ND PARAGRAPH
var showimage		= "yes"		// SHOW A SIDEBAR IMAGE

var topspacing		= "0"		// NUDGE SIDEBAR DOWN - chg from 10 to 0
var sidewidth		= "125"		// SIDEBAR WIDTH 


// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br>');

document.write('<table cellpadding="5" cellspacing="10" border="0" class="sidebartext-right"><tr><td>');


// HMO Add Picture to Legend Area:
// HMO 1-2-10 - added style of fieldset.appointment  
document.write('<fieldset><legend>');
document.write('Requesting Appointments</legend>');

document.write('<img src="./picts/appointment_judy.jpg" border="0" class="borders alt="Office Manager for Doctor Bangart" title="Office Manager for Doctor Bangart" width="175"><br>');
document.write('Judy, our Office Manager, is always available to make appointments and/or help you with your insurance and billing questions.<br>');
document.write('</fieldset>');
document.write('<br><br>');

// END RIGHT SIDEBAR AREA PARAGRAPH 1

document.write('</td></tr></table>');


// -- END -->