<!-- Begin
// ****************************************************//
// File name:  sidebar-right.js
// Date:  7/9/09
// Purpose:  Used on the Home Page - index.html
// 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 7/6/09:

document.write('<fieldset><legend>');

document.write('Dr. Dan Bangart, DPM<br></legend>');

document.write('<a href="doctor.htm"><img src="picts/dantie.jpg" border="0" class="borders alt="Dr. Dan Bangart Podiatrist in Peoria, AZ" title="Dr.Dan Bangart Podiatrist in Peoria, AZ"></a><br>');
document.write('<img src="picts/pushpenred.gif" border="0"> <i>"In addition to the normal issues podiatrists treat, I perform a minimally invasive hammer toe procedure which allows the patient to wear shoes on the same day."</i><br>');


document.write('</fieldset>');
document.write('<br><br>');

// HMO end Add picture Legend area


// START RIGHT SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<fieldset><legend>');

document.write('Specialites<br></legend>');
// HMO added another table so can have 2 columns for bullet image 
document.write('<table cellpadding="4" cellspacing="0" border="0" class="sidebartext-right">');

document.write('<tr><td><img src="picts/squareblue.gif" border="0"></td>');
document.write('<td><a href="./lib_hammertoes_procedure.htm">Stichless hammer toe Procedures</a><br></td></tr>');
document.write('<tr><td><img src="picts/squareblue.gif" border="0"></td>');
document.write('<td><a href="./lib_heelpain_treatment.htm">Nonsurgical treatment of heel pain</a><br></td></tr>');
document.write('<tr><td><img src="picts/squareblue.gif" border="0"></td>');
document.write('<td><a href="./lib_orthotics.htm">State of the art high tech true functional orthotics</a><br></td></tr>');
document.write('<tr><td colspan="2"><a href="./specialties.htm">more specialities...</a><br></td></tr>');



document.write('</table>');


}
// END RIGHT SIDEBAR AREA PARAGRAPH 1










// SMALL PICTURE AREA
// HMO Comment out picture 7/6/09
//   if (showimage == "yes") {
//document.write('<br><center>');
//document.write('<a href="index.html"><img src="picts/sidebar-right.jpg" border="0" class="borders"></a><br>');
//document.write('</center>');
//document.write('<br><br>');
//}







// START RIGHT SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA

   if (paragraph_2 == "no") {

document.write('<fieldset><legend>');

document.write('Heel Pain<br></legend>');

document.write('Nonsurgical treatment of heel pain. <br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 2







document.write('</td></tr></table>');


// -- END -->