function formatCountries( sText )
	{
	return sText.substr( 0, sText.toLowerCase().indexOf( this.sActiveValue.toLowerCase() ) ) + sText.substr( sText.toLowerCase().indexOf( this.sActiveValue.toLowerCase() ), this.sActiveValue.length ).bold().fontcolor( '#ff0000' ) + sText.substr( sText.toLowerCase().indexOf( this.sActiveValue.toLowerCase() ) + this.sActiveValue.length )
	}
	function alertSelected()
	{
		document.getElementById( 'selectedCountry' ).innerHTML = this.sActiveValue
	}
	
	function Show_Stuff(Click_Menu)
	// Function that will swap the display/no display for
	// all content within span tags
	{
	if (Click_Menu.style.display == "none")
	{
	tester.style.display = "";
	alert(Click_Menu.style.display);
	}
	else
	{
	tester.style.display = "none";
	alert(Click_Menu.style.display);
	}
	}
	
	function validateForm(myform) {
	  if(myform.id == "searchByCriteria") {
	  	// validate the select boxes
	  	if (myform.spec.value == "ANY" && myform.med_cond_textbox.value == "" && myform.insur.value == "ANY" && myform.langu.value == "ANY") {
	  		alert("Please select at least 1 more search option when using the top search button.");
	  		return false;
		  }
	  } else {
	    if (myform.lname.value == "") {
	      alert("Please type whole or part of a physician's name when using the bottom search button.");
	      myform.lname.focus();
	      return false;
	    }  
	  }
	}
	
	
