﻿var objID = "shihua";
var str = "";
str += '<table width="633" border="0" cellspacing="0" cellpadding="0" id="@moveid@">';
str += '  <tr>';
str += '    <td  width="633" height="74" valign="top" style="background:url(../../Content/images/search_01.gif); background-repeat:no-repeat;"><table width="100%" border="0" cellspacing="0" cellpadding="0">';
str += '      <tr>';
str += '        <td width="92%" height="57">&nbsp;<span id="@titleid@"></span></td>';
str += '        <td width="8%"><span class="mini_close_btn"><a href="javascript:void(null);" class="layerclose"><img src="../../Content/images/search_04.gif" width="40" height="39" border="0" /></a></span></td>';
str += '      </tr>';
str += '    </table></td>';
str += '  </tr>';
str += '  <tr>';
str += '    <td width="633" height="253" valign="top"  style="background:url(../../Content/images/search_02.gif); background-repeat:repeat-y;"><table width="638" border="0" cellspacing="0" cellpadding="0">';
str += '      <tr>';
str += '        <td width="9" height="249">&nbsp;</td>';
str += '        <td width="611" height="248" valign="top"><div id="@contentid@"></div></td>';
str += '        <td width="18">&nbsp;</td>';
str += '      </tr>';
str += '    </table></td>';
str += '  </tr>';
str += '  <tr>';
str += '    <td  width="633" height="27" style="background:url(../../Content/images/search_03.gif); background-repeat:no-repeat;">&nbsp;</td>';
str += '  </tr>';
str += '</table>';
function InitDiv(obj) {
    //$("#" + objID).html(obj);
    $("#" + objID).append(obj);
    $.layerclose("sentence");
}

function DivRemove(objDiv) {
    $("#" + objDiv).remove();
}

function InitLogo(obj) {
    $("#" + objID).val(obj);
    $.layerclose("sentence");
}

function InitPicture(obj) {
    $("#" + objID).val(obj.title.replace("双击选择该图片,该图片地址为:", ""));
    ClosePictureDiglog();
}

function initFile(obj) {
    $("#" + objID).val(obj);
    hidePopWin();
}

function OpenFormDialog(_editName, routeUrl, _width, _height) {
    ///<summary>
    /// 图片选择对话框
    ///</summary>
    objID = _editName;
    $.layerSetup({
        id: "sentence",
        title: '',
        content: '<iframe src="' + routeUrl + '" width="100%" height="' + _height + 'px" frameborder="no" scrolling="no"></iframe>',
        isbg: true,
        height: _height,
        width: _width,
        templete: str
    
    });
    $.layershow();
}

function CloseDiglog() {
    $.layerclose("sentence");
}

