function changeClass(){
document.getElementById("searchSite").setAttribute("class", "selected");
document.getElementById("searchSite").setAttribute("className", "selected");
document.getElementById("searchPhysicians").setAttribute("class", "notSelected");
document.getElementById("searchPhysicians").setAttribute("className", "notSelected");
document.search_form.action="/search/search";
}
function changeClass2(){
document.getElementById("searchSite").setAttribute("class", "notSelected");
document.getElementById("searchSite").setAttribute("className", "notSelected");
document.getElementById("searchPhysicians").setAttribute("class", "selected");
document.getElementById("searchPhysicians").setAttribute("className", "selected");
document.search_form.action="/find-a-physician/results";
}

/* Expandable Boxes */

function dsp(loc){
   if(document.getElementById){
      var foc=loc.firstChild;
      foc=loc.firstChild.innerHTML?
         loc.firstChild:
         loc.firstChild.nextSibling;
      foc.innerHTML=foc.innerHTML=='+'?'-':'+';
      foc=loc.parentNode.nextSibling.style?
         loc.parentNode.nextSibling:
         loc.parentNode.nextSibling.nextSibling;
      foc.style.display=foc.style.display=='block'?'none':'block';}}  

if(!document.getElementById)
   document.write('<style type="text/css"><!--\n'+
      '.dspcont{display:block;}\n'+
      '//--></style>');
