function noBorderWin(fileName,w,h,titleBg,moveBg,titleColor,titleWord,scr)
//定义一个弹出无边视窗的函数，能数意义见下面「参数说明」，实际使用见最后的实例。
/*
------------------参数说明-------------------
fileName ：无边视窗中显示的文件。
w ：视窗的宽度。
h ：视窗的高度。
titleBg ：视窗「标题栏」的背景色以及视窗边框颜色。
moveBg ：视窗拖动时「标题栏」的背景色以及视窗边框颜色。
titleColor ：视窗「标题栏」文字的颜色。
titleWord ：视窗「标题栏」的文字。
scr ：是否出现卷轴。取值yes/no或者1/0。
--------------------------------------------
*/
{
var contents="<html>"+
"<head>"+
"<title>"+titleWord+"</title>"+
"<META http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">"+
"</head>"+
"<body topmargin=0 leftmargin=0 scroll=no onselectstart='return false' ondragstart='return false'>"+
" <table width=400 height=440 cellpadding=0 cellspacing=0 bgcolor="+titleBg+" id=mainTab>"+
" <tr height=*>"+
" <td colspan=4>"+
" <iframe name=nbw_v6_iframe src="+fileName+" scrolling="+scr+" width=400 height=440 frameborder=0></iframe>"+
" </td>"+
" </tr>"+
" </table>"+
"</body>"+
"</html>";
pop=window.open("远智科技维护服务","_blank","fullscreen=no");
pop.resizeTo(w,h);
pop.moveTo((screen.width-w),(screen.height-h));
pop.document.writeln(contents);
}
