  function ss1(query, args, page, adult_flg) {
    new Ajax.Request("http://r.fanky.jp/ov/" + query + "/" + args + "/" + page + "/1/" + adult_flg + "/", { method: 'get', onComplete: displayData1 });
  }
  
  function displayData1(httpObj) {
    $('ad_ov1').innerHTML = httpObj.responseText;
  }

  function ss2(query, args, page, adult_flg) {
    new Ajax.Request("http://r.fanky.jp/ov/" + query + "/" + args + "/" + page + "/2/" + adult_flg + "/", { method: 'get', onComplete: displayData2 });
  }
  
  function displayData2(httpObj) {
    $('ad_ov2').innerHTML = httpObj.responseText;
  }

  function copy() {
    $('ref').value = $('Keywords').value;
  }


