给你个例子,相关的图片,自己可以找一下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>test</title>
<script language=javascript>
/*
实现无边框透明窗口
*/minimizebar="minimize.gif";   //窗口右上角最小化“按钮”的图片
minimizebar2="minimize2.gif"; //鼠标悬停时最小化“按钮”的图片
closebar="close.gif";         //窗口右上角关闭“按钮”的图片
closebar2="close2.gif";       //鼠标悬停时关闭“按钮”的图片
icon="icon.gif";              //窗口左上角的小图标function noBorderWin(fileName,w,h,titleBg,moveBg,titleColor,titleWord,scr)  //定义一个弹出无边窗口的函数,参数意义见下面“参数说明”,实际使用见最后的实例。
/*
------------------参数说明-------------------
fileName   :无边窗口中显示的文件。
w      :窗口的宽度。
h      :窗口的高度。
titleBg    :窗口“标题栏”的背景色以及窗口边框颜色。
moveBg     :窗口拖动时“标题栏”的背景色以及窗口边框颜色。
titleColor :窗口“标题栏”文字的颜色。
titleWord  :窗口“标题栏”的文字。
scr        :是否出现滚动条。取值yes/no或者1/0。
--------------------------------------------
*/
{
  pop=window.open("","nbw_v4","top=10000");
  pop.close();
  var contents="<html>"+
               "<head>"+
        "<title>"+titleWord+"</title>"+
   "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">"+
   "<object id=hhctrl type='application/x-oleobject' classid='clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11'><param name='Command' value='minimize'></object>"+
   "</head>"+
               "<body topmargin=0 leftmargin=0 scroll=no onselectstart='return false' ondragstart='return false'>"+
   "  <table height=100% width=100% cellpadding=0 cellspacing=1 bgcolor="+titleBg+" id=mainTab>"+
   "    <tr height=18 style=cursor:default; onmousedown='x=event.x;y=event.y;setCapture();mainTab.bgColor=\""+moveBg+"\";' onmouseup='releaseCapture();mainTab.bgColor=\""+titleBg+"\";' onmousemove='if(event.button==1)self.moveTo(screenLeft+event.x-x,screenTop+event.y-y);'>"+
   "      <td width=20 align=center><img height=12 width=12 border=0 src="+icon+"></td>"+
   "      <td width="+(w-18)+" align=left><span style=font-size:12px;color:"+titleColor+";font-family:宋体;position:relative;top:1px;>"+titleWord+"</span></td>"+
   "    </tr>"+
   "    <tr height=*>"+
   "      <td colspan=2>"+
   "        <iframe src="+fileName+" scrolling="+scr+" width=100% height=100% frameborder=0></iframe>"+
   "      </td>"+
   "    </tr>"+
   "  </table>"+
   "  <div style='position:absolute; left:"+(w-30)+"px; top:4px; width:12px; height:12px; z-index:100'><img border=0 width=12 height=12 alt=最小化 src="+minimizebar+" onmousedown=hhctrl.Click(); onmouseover=this.src='"+minimizebar2+"' onmouseout=this.src='"+minimizebar+"'></div>"+
   "  <div style='position:absolute; left:"+(w-14)+"px; top:4px; width:12px; height:12px; z-index:100'><img border=0 width=12 height=12 alt=关闭 src="+closebar+" onmousedown=self.close(); onmouseover=this.src='"+closebar2+"' onmouseout=this.src='"+closebar+"'></div>"+
   "</body>"+
   "</html>";
  //tempWin=window.showModelessDialog("about:<body onload=setTimeout('window.close();','200');>","","dialogWidth:0px;dialogHeight:0px");
  //tempWin=window.open("about:<body onload=setTimeout('window.close();','200');>","","dialogWidth:0px;dialogHeight:0px");
  pop=window.open("about:blank","nbw_v4","fullscreen=1");
  pop.resizeTo(w,h);
  pop.moveTo((screen.width-w)/2,(screen.height-h)/2);
  pop.document.writeln(contents);
  pop.focus();
}
</script></head>
<body><table width="778" border="0" cellspacing="0" cellpadding="0" align="center" class="bg_c">
  <tr> 
    <td width="68" height="178" class="bg_t3">&nbsp;</td>
    <td valign="top"> 
      <p><br>
        <br>
      </p>
      <table width="490" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td>
            <p class="bg_s">欢迎您选择长城汽车的产品和服务! </p>
            <p>点击右侧的“开始导购”按纽,按照下列步骤填写并提交您的“在线订单”......<br>
              <br>
              <br>
            </p>
      </td>
        </tr>
        <tr>
          <td><img src="../../images/05/dgt.gif" width="456" height="82"></td>
        </tr>
      </table>
      <br>
      <br>
    </td>
    <td width="11"></td>
    <td  class=bg_a width="210" align=center><br><br>
    <a onclick=noBorderWin('test.htm','400','500','#000000','#333333','#CCCCCC','test','yes')><img src="car.gif" border=0><br><br><span class=t_m>◆开始测试</span></a><br><br>
  </tr>
</table>
</body>
</html>