function noBorderWin(fileName,w,h,titleBg,titleWord,scr)
 {
  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' value='Maximize'></object>"+  
              "</head>"+
              "<body class='body'  marginwidth=0  marginheight=0  oncontextmenu='event.returnValue=false' 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=*>"+
              " <td colspan=4>"+
              " <iframe name='jaiframe' src="+fileName+" scrolling="+'yes'+" width=100% height=100% frameborder=0></iframe>"+ 
              " </td>"+
              " </tr>"+
              " </table>"+
              "</body>"+
              "</html>";
 w=screen.availWidth;
 h=screen.availheight;            
 pop=window.open("","_blank","fullscreen=yes");
 pop.resizeTo(w,h-25); 
 pop.moveTo(0,0); 
 pop.document.writeln(contents);
}