URL_SEARCH = '/search';
enc = encodeURIComponent;
function search(){
  location.href = URL_SEARCH + makePath() + '/index.htm';
}

function makePath(){
  path = '';
  if(q_name =  enc($('#name').val())){
    path += '/name/' + q_name;
  }

  if(q_area =  enc($('#city option:selected').val())){
    path += '/city/' + q_area;
  }

  if(q_railway = enc($('#railway option:selected').val())){
    path += '/railway/' + q_railway;
  }
  
  if(q_expressway = enc($('#expressway option:selected').val())){
    path += '/expressway/' + q_expressway;
  }

  if(q_religion = enc($('#religion option:selected').val())){
    path += '/religion/' + q_religion;
  }

  if(q_price = $('#price option:selected').val()){
    path += '/price/' + q_price;
  }

  return path
}

function toSelected(reien_id){
  $("reien_" + reien_id).className = "head03";
  $("btn_add_" + reien_id).toggle();
  $("btn_del_" + reien_id).toggle();
  $("result_th_" + reien_id).style.backgroundColor="#F7EFF8";
}

function toNotSelected(reien_id){
  $("reien_" + reien_id).className = "head01";
  $("btn_add_" + reien_id).toggle();
  $("btn_del_" + reien_id).toggle();
  $("result_th_" + reien_id).style.backgroundColor="#FFFBF0";
}
