﻿// JScript File

function ForumViewer()
{
    this.iframe = document.getElementById(FORUM_FRM);
    this.visible = false;
    this.onClick = onClick;    
    this.button = document.getElementById(BTN_FORUM);
    
    function onClick(id)
    {
        
        var request = new Request(REQ_FORUM_TYPE);
        request.id = id;
        top.uiCtrl.sendData(request);
    }   
}   