function checkFill() {
	txt=document.form1.MT.value;
	if (((txt.match ( /[\w| | ]/)) && (txt.length ==1)) || (txt=="") || (txt=="input keyword")) {
		alert("Please put in a word and push a Search button");
		return false;
	}
	else return true;
}
