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


function OnLoad() {
  // Create a custom search control that uses a CSE restricted to code.google.com
  var customSearchControl = new google.search.CustomSearchControl('016467788447848511994:hgnybtuo6p8');

  // Draw the control in content div
  customSearchControl.draw('cse'); 
  
  // run a query
  customSearchControl.setLinkTarget(google.search.Search.LINK_TARGET_PARENT);
}
google.setOnLoadCallback(OnLoad, true);