﻿// JScript File

function ClockViewer()
{
    this.iframe = document.getElementById(CLOCK_FRM);
    this.visible = false;
    this.onClick = onClick;    
    this.button = document.getElementById(BTN_CLOCK);
        
    function onClick(id)
    {
//        debugger
//        var request = new Request(REQ_COURSE_SYLLABUS_TYPE);
//        request.id = id;
//        top.uiCtrl.sendData(request);
    }  
}   