// Remove the text from the search box when clicked
function checkSearchValue(){
theForm=document.forms.search;
theBoxVal=theForm.s.value.toUpperCase();
if(theBoxVal=='TYPE SEARCH HERE'){
	theForm.s.value='';
	}
}