// JavaScript Document


function validate_form () {
    valid = true;

    if (document.searchForm.q.value == "" ) {
        alert("Please enter a value into the search box." );
        valid = false;
    }
    return valid;
}

