﻿var TABLE_IFRAME = "<iframe frameborder=\"0\" scrolling=\"no\" src=\"{0}\" id=\"ifWindow\"></iframe>";
var BUTTON_CLOSE = "<br /><br /><input type=\"button\" value=\" 关闭 \" onclick=\"closeMsg();\" />";

/* 显示消息对话框 */
function showMsg(title,content,showClose)
{
    showDivDialog(title,content,showClose,300,150);
}

/* 关闭当前打开的对话框 */
function closeMsg()
{
    closeDivDialog();
}

function closeDivDialog()
{
    var backDiv = document.getElementById("backDiv");
    backDiv.style.display="none";
}

/* 显示功能框架 */
function ShowFrameWindow(title,url,width,height)
{
    showDivDialog(title,TABLE_IFRAME.replace("{0}",url),true,width,height);
    var ifWindow = document.getElementById("ifWindow");
    ifWindow.style.width = width - 50;
    ifWindow.style.height = height - 50;
   
}