function empty(){

if(lookalikes.country.value == ""){       // you can put .length after the .value if you're finding the amount of characters entered.
alert("A Search Term Must Be Entered!");
lookalikes.country.focus();      // this puts the cursor back in the field
return false;			// this stops the form being sent
}

}


