<!-- // 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('Lake County Medical Society');

document.write('</td></tr><tr><td class="sidetext">');

// START NOTE TEXT AREA - EDIT THE NEXT LINE

document.write('Lake County Medical Society, established in 1855, is the not-for-profit professional association for physicians who live and or practice in Lake County Illinois. The Society provides a wide range of services for physicians.<br><br>');
document.write('Lake County Medical Society, in partnership with the Illinois State Medical Society is there, representing physicians and their patients in our community and throughout Illinois.<br><br> ');

document.write('</td></tr></table>');
}



// SMALL PICTURE AREA

   if (showimage == "yes") {
document.write('<br>');
document.write('<a href="'+linked+'"><img src="graphics/lcms_medallion.jpg" border="0" width="145" class="bordersSB"></a><br>');
document.write('<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 -->