// JavaScript Document
var GuideSentence = '一般名はカタカナで、学名はアルファベットで入力してください。';
function ShowFormGuide(obj) {
	// 入力案内を表示
	if( obj.value == '' ) {
		obj.value = GuideSentence;
		obj.style.color = '#999';
	}
}

function HideFormGuide(obj) {
	// 入力案内を消す
	if( obj.value == GuideSentence ) {
		obj.value='';
		obj.style.color = '#333';
	}
}

function disp(url){
	window.open(url, "help", "width=520,height=600,scrollbars=yes");
}

function result_post(cat, subcat){
	document.result.cat.value=cat;
	document.result.subcat.value=subcat;
	document.result.submit();
}

function page_move(page){
	document.result.page.value=page;
	document.result.submit();
}

function kamei_post(cat, subcat){
	if (subcat != '') {
		result_post(cat, subcat);
	}
}
function opem_list(id) {
	document.getElementById(id).style.display = "block";
}
function close_list(id) {
	document.getElementById(id).style.display = "none";
}

window.document.onkeydown=eventEnter;
function eventEnter() {
	var e = window.event; 
	if( e.keyCode == 13 ){ 
		result_post(0,document.result.word.value);
	}
} 
