// JScript File

// Note: search works - for local testing, see comments below

google.load('search', '1', {language : 'en', style : google.loader.themes.MINIMALIST});

function Init()
{ 
	var customSearchControl = new google.search.CustomSearchControl('014809083548717175414:yumhgdmu0nc');
	customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
	customSearchControl.setLinkTarget(google.search.Search.LINK_TARGET_BLANK)
	var options = new google.search.DrawOptions();

	//local
	options.enableSearchboxOnly("/cog-search-results.html"); 

	//beta
	//options.enableSearchboxOnly("");

	//live
	//options.enableSearchboxOnly("/cog-search-results.html");

customSearchControl.draw('cse-search-form', options);
}

google.setOnLoadCallback(Init);
setTimeout(Init, 200);

