// JavaScript Document
function trim(str){
   return str.replace(/^\s*|\s*$/g,"");
}
function accessSite(fieldValue){
	if(trim(fieldValue.toUpperCase())=="HAWKSHILL"){
		window.location.href="members.htm";
	}
	
}

function changeColour(){
	document.getElementById("go").style.color = "#8CC63F"; 
}
