﻿// JScript File
function LaunchEditor(uniqueId, editorId, displayMode)
{   

    var width = 0;
    
    switch (displayMode)
    {
        case "FourText":
        /*
            width = 160;
            break;
            */
        case "TwoText":
        /*
            width = 330;
            break;
            */
        case "SingleText":
            width = 670;
            break;
        case "FullText":
            width = 750;
            break;
    }
    width = width + 40;    
    // window.open ('/Editor/Editor.aspx?uniqueId=' + uniqueId + '&displayMode= + displayMode, '_blank', 'height=440px,width=110px,location=no,resizable=no,scrollbars=no,toolbar=no,top=20,fullscreen=no');
    window.open ('/Editor/Editor.aspx?uniqueId=' + uniqueId + '&editorId=' + editorId + '&displayMode=' + displayMode, 'editWindow', 'height=800px,width=' + width + 'px,location=no,resizable=yes,scrollbars=no,toolbar=no,top=20,fullscreen=no');
      
}

