///*** DO NOT EDIT***///
   
   function sst(controlID, strNewClass)
       {
	  ah.className = 'searchType';
	  nc.className = 'searchType';
	  rsh.className = 'searchType';
	  
      var objControl = document.getElementById(controlID);
      if (objControl)
      {
      var arrControls = document.getElementsByTagName(objControl.tagName);  
      for (var i=0; i<arrControls.length; i++)
      {
      if (arrControls[i].id == controlID)
      arrControls[i].className = strNewClass;
      }
    }
  }
	 
     function changeClass(controlID, strNewClass, img1, img2)
     {
      var objControl = document.getElementById(controlID);
      if (objControl)
      {
      var arrControls = document.getElementsByTagName(objControl.tagName);  
      for (var i=0; i<arrControls.length; i++)
      {
      if (arrControls[i].id == controlID)
      arrControls[i].className = strNewClass;
      }
      }
 	if (document.images)	{
		document.images[img1].src=img2;
	}

     }
	 
 
	  
	function toggleDisplay(id1, id2, img1, img2){
	
		if (document.all)	{
		
				document.all[id1].style.display = '' ;
				document.all[id2].style.display = 'none' ;
			}
			else if (document.getElementById)	{
		
					document.getElementById(id1).style.display = '' ;
					document.getElementById(id2).style.display = 'none' ;
					}
			if (document.images)	{
		document.images['tabHome'].src = tabHomeRestore;
		document.images['tabMap'].src = tabMapRestore;
		document.images[img1].src=img2;
	}
				}
///*** DO NOT EDIT***///-->
