<!-- // Begin Sidebar

// 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 TEXT PARAGRAPH
var boxwidth		= "150"		// WIDTH OF THE TEXT BOX
var showimage		= "yes"		// SHOW A SMALL SIDEBAR IMAGE
var linked		= "news.htm"	// SIDEBAR IMAGE LINK
var sidewidth		= "161"		// WIDTH OF THE LEFT SIDEBAR
var bottomspace		= "10"		// SIDEBAR BOTTOM SPACE
var nudge		= "10"		// NUDGE SIDEBAR DOWN
var printnudge		= "25"		// NUDGE SIDEBAR DOWN (for printing only)



document.write('<div id="sidebar" class="menu-layer">');
document.write('<table cellpadding="0" cellspacing="0" border="0" width="'+sidewidth+'">');
document.write('<tr><td align="center">');
document.write('<img src="picts/spacer.gif" height="'+nudge+'" width="5"><br>');
document.write('<span class="printonly"><img src="picts/spacer.gif" height="'+printnudge+'" width="5"><br></span>');



// START SIDEBAR TEXT - EDIT THIS AREA

// NOTE: If you use a ' add a slash before it like this \'


   if (paragraph_1 == "yes") {

document.write('<table cellpadding="5" cellspacing="0" border="0" width="'+boxwidth+'"><tr><td class="sidetexttitle">');

// START SIDE TEXT TITLE

document.write('Directors Message<br>');

document.write('</td></tr><tr><td class="sidetext">');

// START NOTE TEXT AREA - EDIT THE NEXT LINE

document.write('I take great pride in knowing that our highly trained professional staff  will provide you the care you need when an emergency occurs. If for any reason you have questions, suggestions or wish to voice a concern about the care you or a loved one received, please feel free to contact me personally.<br>');




// SIDEBAR LINK

document.write('');

document.write('</td></tr></table>');
}







// SMALL PICTURE AREA

   if (showimage == "yes") {
document.write('<br>');
document.write('<a href="'+linked+'"><img src="picts/sidebar.jpg" border="0" width="148" class="bordersSB"></a><br>');

}






document.write('</td></tr></table>');
document.write('</div>');
document.write('<br>');
document.write('<div id="sidebar-spacer">');
document.write('<img src="picts/spacer.gif" height="'+bottomspace+'" width="'+sidewidth+'"><br>');
document.write('</div>');




//  End -->
