function ClearText(MyText) {
    if (MyText == 'search mcckc.edu') {
        //document.googleThis.q.value = '';
        document.getElementById("cse-search-box").q.value = '';
    }
} // end function ClearText()

function SetText(MyText) {
    if (MyText == '') {
        document.getElementById("cse-search-box").q.value = 'search mcckc.edu';
    }
} // end function SetText()

function GoToURL(MyText) {
    MyText = MyText.toLowerCase()
    switch (MyText) {
        case 'search mcckc.edu': 
            {
                alert('Please enter search terms to find materials on the MCC site.');
                document.getElementById("cse-search-box").q.focus;
                return false;
            } // end case 1
        case '': 
            {
                alert('Please enter search terms to find materials on the MCC site.');
                document.getElementById("cse-search-box").q.focus;
                return false;
            } // end case 2					
    } // end switch
} //end function GoToURL()

