function changeParentLocation(url) {
  window.opener.location.href=url;
  window.opener.focus();
}

function setSearchHitId(id){
  var form = document.getElementById('content_form');

  form.searchHitId.value = id;
}

function setAction(action){
  var form = document.getElementById('content_form');

  form.action.value = action;
}

function setPageIndex(pageIndex){
  var form = document.getElementById('content_form');

  form.pageIndex.value = pageIndex;
}

function feelLuckyToday(){
  var form = document.getElementById('content_form');

  form.feelLucky.value = 1;
}

function setFaqId(faqId) {
  var form = document.getElementById('content_form');

  form.faqId.value = faqId;
}