最简单的window.open(url);
对话框
var url = FR.cjkEncode("${servletURL}?viewlet=abc.cpt");
var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");
$iframe.attr("src", url);
var o = {
title: "",
width: 800,
height: 500
};
FR.showDialog(o.title, o.width, o.height, $iframe, o);