<!-- IMAGE RESIZER -->
<!--
(document.getElementById) ? dom = true : dom = false;
function fixImgs(whichId, maxW) {
if (dom) {
 var pix=document.getElementById(whichId).getElementsByTagName('img');
  for (i=0; i<pix.length; i++) {
    w=pix[i].width;
    h=pix[i].height;
    if (w > maxW) {
      f=1-((w - maxW) / w);
      pix[i].width=w * f;
      pix[i].height=h * f;
      }
    }
  }
}
//-->

<!-- COLLAPSIBLE MENU -->
<!--
if (document.getElementById) {
 document.writeln('<style type="text/css"><!--')
 document.writeln('.l_menu_M {font-family:arial,helvetica,sans-serif; font-size:9pt; font-weight:bold; color:#990033}')
 document.writeln('a:hover.l_menu_M {text-decoration: underline; font-family:arial,helvetica,sans-serif; font-size:9pt; font-weight:bold; color:#990033}')
 document.writeln('a:visited.l_menu_M {text-decoration: underline; font-family:arial,helvetica,sans-serif; font-size:9pt; font-weight:bold; color:#990033}')

 document.writeln('.l_menu1 {display:block; padding-left:14px; font-family:arial,helvetica,sans-serif; font-size:9pt; color:#990033}')
 document.writeln('.l_menu {text-decoration:none; color:#990033}')
 document.writeln('a:hover.l_menu {text-decoration: underline; color:#990033}')
 document.writeln('//--></style>') }

function openClose(theID) {
 if (document.getElementById(theID).style.display == "none") { document.getElementById(theID).style.display = "block" }
 else { document.getElementById(theID).style.display = "none" } }
// -->

<!-- SITE SEARCH -->
<!--
function validateSearch() {
 if ((document.search.region.selectedIndex=="State") || (document.search.category.selectedIndex=="Category")) { alert('You have either not chosen the location or category\nfor the directory search!'); return false; }
 return true;
}
// -->
