var w=800;//自己调整高度
var h=600;//自己调整宽度
var url = encodeURI("/webroot/decision/view/report?viewlet=GettingStarted.cpt&op=write");//自己改路径与报表名称
//窗体
var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");
//将窗体的src属性设置为模板路径
$iframe.attr("src", url);
//窗体的属性
var o = {
title: "我是对话框", //标题
width: w, //宽度
height: h //高度
};
//弹出窗体
FR.showDialog(o.title, o.width, o.height, $iframe, o);