// JavaScript Document

google.load("search", "1");

function OnLoad() 
	{
	// Create a search control
	var searchControl = new google.search.SearchControl();

	var searcher;
	searcher = new GwebSearch();
	searcher.setSiteRestriction("000085747530499461373:g_iajbwfwji");

	searchControl.addSearcher(searcher);

	// Tell the searcher to draw itself and tell it where to attach
	searchControl.draw(document.getElementById("searchbox"));
	}
	
google.setOnLoadCallback(OnLoad);