// JavaScript Document


<!-- To clear the Google Search bar (text box) when called from "window onload", or "body onload" -->    
function ClearText() {
	var aTextBox;
	aTextBox = document.getElementById('q')
	aTextBox.value=""; 
	aTextBox.focus();
	aTextBox.defaultValue = "Search Water Banking"
	aTextBox.blur();	
	return true;
}


<!-- Google Search Script -->
<!-- Move this 7-line code block back to the AWBA.dwt template if necessary. See note in AWBA.dwt template -->
google.load('search', '1');
google.setOnLoadCallback(function() {
google.search.CustomSearchControl.attachAutoCompletion(
	'001804936876484588018:wrd3nz60tnc',
	document.getElementById('q'),
	'cse-search-box');
});


<!-- Script used with search button (Google) -->
function change_filterOut(obj) { 
	obj.style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=100)" ; 

	/* for IE 
		filter:alpha(opacity=70); */
	/* CSS3 standard 
		opacity:0.070; */
}
function change_filterOver(obj) { 
	obj.style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=70)" ; 

	/* for IE 
		filter:alpha(opacity=70); */
	/* CSS3 standard 
		opacity:0.070; */
}
    

