// JavaScript Document
function weather_request_chk(theForm) {
	if(!theForm.ID.value.length) {
		alert("You must enter station ID or use the Search button.");
		return false;
	}
	return true;
}