<!-- Begin

// 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 paragraph_3 	= "yes"		// SHOW THE 3ND PARAGRAPH
var showimage		= "no"		// SHOW A SIDEBAR IMAGE

var topspacing		= "10"		// NUDGE SIDEBAR DOWN
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>');







// START RIGHT SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<fieldset><legend>');

document.write('Service Centers<br></legend>');

document.write('Billings 406.655.4964<br>');
document.write('Bozeman 406.388.5711<br>');
document.write('Butte 406.494.1088<br>');
document.write('Denver 303.227.0333<br>');
document.write('Glendive 406.655.4964<br>');
document.write('Great Falls 406.727.6959<br>');
document.write('Helena 406.442.4356<br>');
document.write('Kalispell 406.257.8570<br>');
document.write('Missoula 406.549.8590<br>');
document.write('Salt Lake City 801.975.1271<br>');
document.write('Spokane 509.891.2716<br>');


document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 1



// START RIGHT SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA

   if (paragraph_2 == "yes") {

document.write('<fieldset><legend>');

document.write('Need Help?<br></legend>');

document.write('Email MTS Freight Helpdesk <A HREF="mailto:vhalleck@mtsfreight.com">vhalleck@mtsfreight.com</a><br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 2



// START RIGHT SIDEBAR AREA PARAGRAPH 3 EDIT THIS AREA

   if (paragraph_3 == "yes") {

document.write('<fieldset><legend>');

document.write('Moving?<br></legend>');

document.write('<a href="http://simpleinexpensivemove.com/index.html"><img src="picts/sim2logo.jpg" border="0"></a><br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 3


// SMALL PICTURE AREA

   if (showimage == "yes") {

document.write('<br><center>');
document.write('<a href="index.html"><img src="picts/sim2logo.jpg" border="0"></a><br>');
document.write('</center>');
document.write('<br>');
}



document.write('</td></tr></table>');


// -- END -->