// JavaScript Document
//Provides the Default text of a textbox and when focus is lost the Default text appears
    function textChanger(obj, text){
        if(text == null){text = ''}
        if(obj.value == '')
            obj.value = text;
        else if(obj.value == text)
            obj.value = '';
        else if(obj.value != text)
            return;
    }
    function CheckVal(){
        var val = document.getElementById("txtSearch");
        val = val.value;
        if(val != '' && val != 'Search'){return true;}
        else{
            alert("-- Please enter search keyword(s).");
            return false;
        }
    }
