/*　記事投稿　*/
function post_form(){
	$("#ajax_view").html("読み込み中..." + "<img src=" + main_url + "/images/ajax-loader.gif>");
	$("#ajax_view").load(main_url + "/post_view.php",{
	});
}

/*　ブログ運営者様について　*/
function blog_master(){
	$("#ajax_view").html("読み込み中..." + "<img src=" + main_url + "/images/ajax-loader.gif>");
	$("#ajax_view").load(main_url + "/blog_master.php",{
	});
}

/*　お問い合わせ　*/
function mail(){
	$("#ajax_view").html("読み込み中..." + "<img src=" + main_url + "/images/ajax-loader.gif>");
	$("#ajax_view").load(main_url + "/about.php",{
	});
}

/* カウント　*/

function click_count(id){
	$("#test").load("c.php", {
		id: id
	});
}

/* 検索　*/

function serach1(){
	$("#ajax_view").html("読み込み中..." + "<img src=" + main_url + "/images/ajax-loader.gif>");
	$("#ajax_view").load(main_url + "/search_html.php", {
	});

}

/* fly_key */

function fly_title(){
	var title = document.getElementById("title_title").value;
	location.href = main_url + "/search/key/" + title; 
}

/* fly_title */

function fly_number(){
	var number = document.getElementById("url_url").value;
	location.href = main_url + "/search/url/" + number; 
}

/* エンター無効　*/
function noenter(e) {
  return (e.keyCode == 13) ? false : true;
}　
