﻿<!--        
    function searchCustomComponent(targetPage) {    
        this.targetPage = targetPage;
        function onclick() {
            window.location = targetPage + '?Browse=Search&Keyword=' + document.getElementById('tbSearchCustomKeyword').value;
        }
        
        function onkeydown(e) {
            if (e.keyCode == 13) { 
                e.cancelBubble = true; e.returnValue = false;
                onclick();            
                return false;
            }        
            return true;
        }
                   
        this.onclick = onclick;
        this.onkeydown = onkeydown;       
    }   
//-->

