function searchfocus()
//clear the text of the search box when it gets focus
//(but only if the user has not already typed something into the search field)
  {
	if (document.SiteSearch.q.value=="Search Site")
		{
			document.SiteSearch.q.style.color="#333";
			document.SiteSearch.q.value="";
		}
  }
//set the text of the site search box in the <body> onload 
function setsearch()
  {
	document.SiteSearch.q.style.color="#999";
	document.SiteSearch.q.value="Search Site";
  }
//if the search box is empty then put the text back
function searchblur()
  {
	if (document.SiteSearch.q.value=="")
		{
			document.SiteSearch.q.style.color="#999";
			document.SiteSearch.q.value="Search Site";
		}
  }
  
//for the news section
//clear the text of the search box when it gets focus
//(but only if the user has not already typed something into the search field)
function n_searchfocus()
  {
	if (document.NewsSearch.s.value=="Search News")
		{
			document.NewsSearch.s.style.color="#333";
			document.NewsSearch.s.value="";
		}
  }
//set the text of the site search box in the <body> onload 
//but only if ther is no search term already 
function n_setsearch()
  {
	if (document.NewsSearch.s.value=="" || document.NewsSearch.s.value=="Search News") 
		{
		document.NewsSearch.s.style.color="#999";
		document.NewsSearch.s.value="Search News";
		}
  }
//if the search box is empty then put the text back
function n_searchblur()
  {
	if (document.NewsSearch.s.value=="")
		{
			document.NewsSearch.s.style.color="#999";
			document.NewsSearch.s.value="Search News";
		}
  }