﻿// JScript File

function CatalogSearchViewer()
{
    this.iframe = document.getElementById(CATALOG_SEARCH_FRM);
    this.visible = false;
    this.onClick = onClick;    
    this.button = document.getElementById(BTN_CATALOG_SEARCH);
    
    function onClick(id)
    {
        //debugger
        var request = new Request(REQ_CATALOG_SEARCH_TYPE);
        request.id = id;
        top.uiCtrl.sendData(request);
    }
}   