﻿// JScript File

function SyllabusViewer()
{
    this.iframe = document.getElementById(SYLLABUS_FRM);
    this.visible = false;
    this.onClick = onClick;
    this.button = document.getElementById(BTN_SYLLABUS);
    this.GetNode = GetNode;
    
    function onClick(id, name)
    {
        
        var request = new Request(REQ_SELECTED_PARAGRAPH_TYPE);
        var unescapedName = unescape(name);
        var unescapedName = name;
        request.id = PARAGRAPH_ID + "=" + id + "&" + PARAGRAPH_NAME + "=" + unescapedName;
        top.uiCtrl.sendData(request);
    } 
    // lilah end day
    function GetNode()
    {
      //  debugger
        //this.iframe.contentWindow.document.images[0].outerHTML
      // var str = tree_selected_path;
    }
}   