
/** select box で直接遷移 */
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

/** 企業検索・動画検索での表示件数変更による画面遷移 */
function changeSearchLimit(url,selObj){
	location.href = url + '&limit=' + selObj.options[selObj.selectedIndex].value;
}
/** コメント一覧時の表示切替 */
function changeDispComment(url,selObj){
	location.href = url + '&category=' + selObj.options[selObj.selectedIndex].value;
}
/** メルマガテストメール管理の表示切替 */
function changeDispTestMail(url,selObj){
	location.href = url + '&mail_type=' + selObj.options[selObj.selectedIndex].value;
}
