function sendWord() {
	if( !$("word")) {
		return;
	}
	words = $F('word');
	if( words == "" ) {
		alert( "内容を入力してください。" );
		return;
	}
	var ajax = new Ajax.Request("/send_word.php?words=" + encodeURI(words) , {onComplete: readCompleteWd});
}
function readCompleteWd(res)
{
	$('words_on').style.display='none';
	$('words_off').style.display='block';
	return;
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
        window.open(theURL,winName,features);
}


