// <!----------------- JAVA SCRIPT FOR SEARCH BOX ---------------------->



function clearTextSearch(t) {
    if (t.value == "Search") t.value = ''
    t.style.color = 'white'
    t.onfocus = null
}

function clearTextKeyword(t) {
    if (t.value == "Keyword") t.value = ''
    t.style.color = 'black'
    t.onfocus = null
}