/*
 * ひとこと掲示板
 */

//「発言する」画面を開く
function hitokoto_entry(id){
	var url = "./hitokoto_entry.phtml?question_id=" + id + "&reset=1";
	window.open(url , "hitokoto" , "top=10,left=20,width=480,height=400,scrollbars=yes");
}

// ウィンドウフォーカス
function windowfocus(){
	window.focus();
}

// リセット
function myreset(){
	var url = window.location.href;
	if(url.match(/\?/))		url += "&";
	else					url += "?";
	url += "reset=1";
	
	window.location.href = url;
}

