function formsubmit(){
	var word = document.getElementById("word").value;
	if(word==""){
		alert("Input Key Word!");
		return;
	}else{
		
		document.getElementById("searchForm").submit();
	}
}
