﻿
//Clears the initial textbox value upon entry
function clear_keywords() {
    var keywordTextBox = document.getElementById("keywordTextBox");
    if(keywordTextBox.value == "Keywords") {
        keywordTextBox.value = "";
    }
}


function submitForm() {
    
    clear_keywords();
    
    if (document.JobSearch.onsubmit()) {
        document.JobSearch.submit();
    }
    
    return true;

}



<!--
//Server:WWb02
-->
