// JavaScript Document
function formSubmit()
{

	if ((document.aspForm.key.value=="")||(document.aspForm.key.value.length<2))
	{
		alert("No Keyword or Too Short.");
		return false;
	}
	else
	{
		return true;
	}	
}