﻿// JScript File

var strTmpLeftPic = '<img src="images/default.jpg"style="float: left; margin:5px; width: 201px; height: 175px; border: solid 1px black" />';
var strTmpRightPic = '<img src="images/default.jpg"style="float: right; margin:5px; width: 201px; height: 175px; border: solid 1px black" />';
function PasteEmailTemplate(commandName) {
    switch(commandName) {
        case('deleteall'):
            HtmlEditor.ExecuteCommand(ASPxClientCommandConsts.SELECT_ALL, null);
            HtmlEditor.ExecuteCommand(ASPxClientCommandConsts.PASTEHTML_COMMAND, '&nbsp;');
            break;
        case('tmpLeftPic'):
            //HtmlEditor.ExecuteCommand(ASPxClientCommandConsts.SELECT_ALL, null);
            HtmlEditor.ExecuteCommand(ASPxClientCommandConsts.PASTEHTML_COMMAND, strTmpLeftPic);
            break;
        case('tmpRightPic'):
            //HtmlEditor.ExecuteCommand(ASPxClientCommandConsts.SELECT_ALL, null);
            HtmlEditor.ExecuteCommand(ASPxClientCommandConsts.PASTEHTML_COMMAND, strTmpRightPic);
            break;
    }
}
