<!-- Search Field -->
function blursearch() {

	if(document.sitesearch.search.value=='')
		document.sitesearch.search.value='by catalog number'

}

function focussearch() {

	if(document.sitesearch.search.value=='by catalog number')
		document.sitesearch.search.value=''

}

<!-- Search Field 2 -->
function blursearch2() {

	if(document.sitesearch2.search.value=='')
		document.sitesearch2.search.value='by catalog number'

}

function focussearch2() {

	if(document.sitesearch2.search.value=='by catalog number')
		document.sitesearch2.search.value=''

}
<!-- OnClick Navigation Script -- http://support.internetconnection.net/CODE_LIBRARY/Javascript_Show_Hide.shtml -->
var ids=new Array('sub-civic','sub-edu','sub-office','sub-worship','sub-rest','sub-retail','sub-sports');

function switchid(id){	
	hideallids();
	showdiv(id);
}

function hideallids(){
	//loop through the array and hide each element by id
	for (var i=0;i<ids.length;i++){
		hidediv(ids[i]);
	}		  
}

function hidediv(id) {
	//safe function to hide an element with a specified id
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'none';
		}
		else { // IE 4
			document.all.id.style.display = 'none';
		}
	}
}

function showdiv(id) {
	//safe function to show an element with a specified id
		  
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'block';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'block';
		}
		else { // IE 4
			document.all.id.style.display = 'block';
		}
	}
}
