/*
google.load('search', '1');

var engineID
var keyword
function setVars(engineIDtxt,keywordtxt){
	engineID = engineIDtxt;
	keyword = keywordtxt;
}


function OnLoad() {
  
  // Create a custom search control that uses a CSE restricted to code.google.com
  var customSearchControl = new google.search.CustomSearchControl(engineID);

  // Draw the control in content div
  customSearchControl.draw('googleSrch'); 
  
  // run a query
  customSearchControl.execute(keyword);
}
//google.setOnLoadCallback(OnLoad);
*/