google.load("search",	"1");

var searchLabel = "thebattleofkontum.com";
var searchDomain = "www.thebattleofkontum.com";
var searchTerm = "";

function OnLoad(){
document.getElementById('searchcontrol').innerHTML="Loading...";
	var searchControl = new google.search.SearchControl();
//	searchControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
	searchControl.setLinkTarget(google.search.Search.LINK_TARGET_BLANK);

	var options = new google.search.SearcherOptions();
	options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
	searchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);
//	searchControl.setResultSetSize(google.search.Search.SMALL_RESULTSET);
	options.setNoResultsString("Your search returned no results.")

	var siteSearch = new google.search.WebSearch();
	siteSearch.setUserDefinedLabel(searchLabel);
	siteSearch.setUserDefinedClassSuffix("siteSearch");
	siteSearch.setSiteRestriction(searchDomain);
	searchControl.addSearcher(siteSearch, options);
	searchControl.draw(document.getElementById("searchcontrol"));

	searchControl.execute(searchTerm);
	document.forms[0][0].focus();
}

google.setOnLoadCallback(OnLoad);


