function gpb_SearchClear()

{

    var box = document.getElementById("s");



    if(box.value != "")

        box.value = "";

}



function gpb_SearchBlur()

{

    var box = document.getElementById("s");

    

    if(box.value == "")

        box.value = "search";

}