From cqs@jzwx.com Mon Mar  3 05:25:29 2003
Received: from [IPv6:::ffff:61.183.173.184] ([IPv6:::ffff:61.183.173.184]:260
	"ehlo jzwx.com") by humbolt.nl.linux.org with ESMTP
	id <S25781AbTCCEZX>; Mon, 3 Mar 2003 05:25:23 +0100
From:	=?GB2312?B?vsXW3c7v18rQxc+izfg=?= <cqs@jzwx.com>
Subject: =?GB2312?B?bGludXgtbW0tYnVncy1hcmNoaXZlLMT6usOjobbUxPrJ+tLi09Cw79b6o6y2?=
Message-Id: <20030303042526Z25781-10185+743@humbolt.nl.linux.org>
To:	unlisted-recipients:; (no To-header on input)
Date:	Mon, 3 Mar 2003 05:25:23 +0100
Return-Path: <cqs@jzwx.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

 =?GB2312?B?+MfSvvi21MPit9GjoQ==?=
To: linux-mm-bugs-archive@nl.linux.org
Content-Type: text/html;charset="GB2312"
Date: Mon, 3 Mar 2003 12:26:40 +0800
X-Priority: 3
X-Mailer: FoxMail 3.11 Release [cn]

<HTML><HEAD><TITLE>九州物资信息网--首页</TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<META content=从事信息服务、网上交易、网上分销、网上采购、网站建设、解决方案等，是一个专注于钢铁业的电子商务公司。 
name=DESCRIPTION>
<META content=钢铁,钢厂,生铁，炉料,铁合金,金属,冶金,废钢,信息,电子商务,ERP,仓储,配送,焦碳, name=keywords>
<SCRIPT language=javascript>
function openUser(id) {
	var Win = window.open("dispuser.asp?name="+id,"openScript");
}

function openScript(url, width, height){
	var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
}

function openDis(bid,rid,id){
	self.location="GBook_read.asp?boardid="+bid+"&RootID="+rid+"&id="+id
}

function PopWindow()
{ 
openScript('messanger.asp?action=newmsg',420,320); 
}
var nn = !!document.layers;
var ie = !!document.all;

if (nn) {
  netscape.security.PrivilegeManager.enablePrivilege("UniversalSystemClipboardAccess");
  var fr=new java.awt.Frame();
  var Zwischenablage = fr.getToolkit().getSystemClipboard();
}

function submitonce(theform){
//if IE 4+ or NS 6+
if (document.all||document.getElementById){
//screen thru every element in the form, and hunt down "submit" and "reset"
for (i=0;i<theform.length;i++){
var tempobj=theform.elements[i]
if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
//disable em
tempobj.disabled=true
}
}
}
</SCRIPT>

<SCRIPT language=JavaScript>
//***********默认设置定义.*********************
tPopWait=50;//停留tWait豪秒后显示提示。
tPopShow=5000;//显示tShow豪秒后关闭提示
showPopStep=20;
popOpacity=99;

//***************内部变量定义*****************
sPop=null;
curShow=null;
tFadeOut=null;
tFadeIn=null;
tFadeWaiting=null;

document.write("<style type='text/css'id='defaultPopStyle'>");
document.write(".cPopText {  background-color: #F8F8F5;color:#000000; border: 1px #000000 solid;font-color: font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}");
document.write("</style>");
document.write("<div id='dypopLayer' style='position:absolute;z-index:1000;' class='cPopText'></div>");


function showPopupText(){
var o=event.srcElement;
	MouseX=event.x;
	MouseY=event.y;
	if(o.alt!=null && o.alt!=""){o.dypop=o.alt;o.alt=""};
        if(o.title!=null && o.title!=""){o.dypop=o.title;o.title=""};
	if(o.dypop!=sPop) {
			sPop=o.dypop;
			clearTimeout(curShow);
			clearTimeout(tFadeOut);
			clearTimeout(tFadeIn);
			clearTimeout(tFadeWaiting);	
			if(sPop==null || sPop=="") {
				dypopLayer.innerHTML="";
				dypopLayer.style.filter="Alpha()";
				dypopLayer.filters.Alpha.opacity=0;	
				}
			else {
				if(o.dyclass!=null) popStyle=o.dyclass 
					else popStyle="cPopText";
				curShow=setTimeout("showIt()",tPopWait);
			}
			
	}
}

function showIt(){
		dypopLayer.className=popStyle;
		dypopLayer.innerHTML=sPop;
		popWidth=dypopLayer.clientWidth;
		popHeight=dypopLayer.clientHeight;
		if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
			else popLeftAdjust=0;
		if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
			else popTopAdjust=0;
		dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
		dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
		dypopLayer.style.filter="Alpha(Opacity=0)";
		fadeOut();
}

function fadeOut(){
	if(dypopLayer.filters.Alpha.opacity<popOpacity) {
		dypopLayer.filters.Alpha.opacity+=showPopStep;
		tFadeOut=setTimeout("fadeOut()",1);
		}
		else {
			dypopLayer.filters.Alpha.opacity=popOpacity;
			tFadeWaiting=setTimeout("fadeIn()",tPopShow);
			}
}

function fadeIn(){
	if(dypopLayer.filters.Alpha.opacity>0) {
		dypopLayer.filters.Alpha.opacity-=1;
		tFadeIn=setTimeout("fadeIn()",1);
		}
}
document.onmouseover=showPopupText;
</SCRIPT>

<STYLE type=text/css>A:visited {
	COLOR: #000000; TEXT-DECORATION: none
}
A:active {
	COLOR: red; TEXT-DECORATION: none
}
A:hover {
	COLOR: red; TEXT-DECORATION: underline
}
A:link {
	COLOR: #000000; TEXT-DECORATION: none
}
.navPoint {
	COLOR: white; CURSOR: hand; FONT-FAMILY: Webdings; FONT-SIZE: 9pt
}
.t {
	LINE-HEIGHT: 1.4
}
.newwhite {
	COLOR: #ffffff; FONT-SIZE: 12px; TEXT-DECORATION: none
}
.white1 {
	COLOR: #ffffff; FONT-SIZE: 12px; LINE-HEIGHT: 220%; TEXT-DECORATION: none
}
BODY {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px; SCROLLBAR-HIGHLIGHT-COLOR: #84B1D2; SCROLLBAR-SHADOW-COLOR: #84B1D2; SCROLLBAR-3DLIGHT-COLOR: #84B1D2; SCROLLBAR-TRACK-COLOR: #FFFFFF; SCROLLBAR-DARKSHADOW-COLOR: #84B1D2; scrollbar-Base-Color: #84B1D2
}
TD {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
P {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
DIV {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
BR {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
FORM {
	FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
OPTION {
	FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
LI {
	COLOR: #094366; FONT-SIZE: 9pt; LINE-HEIGHT: 16px; LIST-STYLE: url(images/dot1.gif); TEXT-INDENT: 5pt
}
INPUT {
	BORDER-BOTTOM-COLOR: #cccccc; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #cccccc; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #cccccc; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cccccc; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px; HEIGHT: 15pt; PADDING-BOTTOM: 1px; PADDING-LEFT: 1px; PADDING-RIGHT: 1px; PADDING-TOP: 1px
}
TEXTAREA {
	BACKGROUND-COLOR: #efefef; BORDER-BOTTOM-COLOR: #000000; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #000000; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #000000; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #000000; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
SELECT {
	BACKGROUND-COLOR: #eeeeee; BORDER-BOTTOM-COLOR: #000000; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #000000; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #000000; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #000000; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
.input1 {
	BACKGROUND-COLOR: #e7e7e7; BORDER-BOTTOM-STYLE: solid; BORDER-LEFT-STYLE: solid; BORDER-RIGHT-STYLE: solid; BORDER-TOP-STYLE: solid
}
</STYLE>
<!-- background-color: #E4E4E4;border-width: 0 ; -->
<META content="Microsoft FrontPage 4.0" name=GENERATOR>
<style fprolloverstyle>A:hover {color: red; font-weight: bold}
</style>
</HEAD>
<BODY bgColor=#ffffff leftMargin=0 topMargin=0 link="#0000FF" vlink="#990066" alink="#FF0000">
<div align="left">
<TABLE border=0 cellPadding=0 cellSpacing=0 height=68 width=768>
  <TBODY>
  <TR>
    <TD align=middle class=button rowSpan=2 vAlign=center width=163 height="68">
        <p align="center"><img border="0" src="http://www.jzwx.com/emailsend/logo4.jpg" width="150" height="100"></p>
    </TD>
    <TD align=right class=button colSpan=2 vAlign=center height="25">
      <TABLE border=0 cellPadding=0 cellSpacing=0 height=20 width="100%">
        <TBODY>
        <TR>
          <TD>
            <P align=right><a href="http://www.jzwx.com">http://www.jzwx.com&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;              
            &nbsp;<A href="http://www.jzwx.com/"              
            target=_parent>首页</A> | <A                           
            href="http://www.jzwx.com/Member_agree.asp" target=_parent>会员注册</A>                           
            | <A href="http://www.jzwx.com/Service.asp" target=_parent>客户服务</A>                           
            | <A href="http://www.jzwx.com/navagation.asp"                           
            target=_parent>网站导航</A> | <A href="http://www.jzwx.com/help.asp"                           
            target=_parent>帮助</A> <B>2003年2月10日</B> </P>                          
          <TD></TD></TR></TBODY></TABLE>                          
      <TABLE border=0 cellPadding=0 cellSpacing=0 width="75%">                          
        <TBODY>                          
        <TR>                          
          <TD bgColor=#999999><IMG height=1 src="space3.gif"                           
            width=1></TD></TR></TBODY></TABLE></TD></TR>                          
  <TR>                          
    <TD align=left class=button vAlign=center width=489 height="43">                          
      <TABLE bgColor=#000000 border=0 cellPadding=0 cellSpacing=1>                          
        <TBODY>                          
        <TR>                          
            <TD align=middle bgColor=#ffffff> <object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000                           
            codebase=http://download.macroindexphoto.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0                           
            height=60 width=468>           
                <param name="_cx" value="12383"> 
                <param name="_cy" value="1588"> 
                <param name="Movie" value="http://www.jzwx.com/indexphoto/banner2.swf"> 
                <param name="Src" value="http://www.jzwx.com/indexphoto/banner2.swf"> 
                <param name="WMode" value="Transparent"> 
                <param name="Play" value="-1"> 
                <param name="Loop" value="-1"> 
                <param name="Quality" value="High"> 
                <param name="SAlign" value> 
                <param name="Menu" value="-1"> 
                <param name="Base" value> 
                <param name="Scale" value="ShowAll"> 
                <param name="DeviceFont" value="0"> 
                <param name="EmbedMovie" value="0"> 
                <param name="BGColor" value> 
                <param name="SWRemote" value><embed src="http://www.jzwx.com/emailsend/A01.swf" quality="high" pluginspage="http://www.macroindexphoto.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="468" height="60" wmode="transparent">           
              </object></TD>          
          </TR></TBODY></TABLE></TD>                        
    <TD align=left class=button vAlign=center width=116 height="43">                        
      <TABLE bgColor=#000000 border=0 cellPadding=0 cellSpacing=1 width="90%">                        
        <TBODY>                        
        <TR>                        
            <TD bgColor=#ffffff> <OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000                         
            codeBase=http://download.macroindexphoto.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0                         
            height=60 width=110>          
                <param name="_cx" value="2910">                        
              <param name="_cy" value="1614">                        
              <param name="FlashVars" value="-1">                        
              <param name="Movie" value="http://www.jzwx.com/emailsend/A02.swf">                        
              <param name="Src" value="http://www.jzwx.com/emailsend/A02.swf">                        
              <param name="WMode" value="Window">                        
              <param name="Play" value="-1">                        
              <param name="Loop" value="-1">                        
              <param name="Quality" value="High">                        
              <param name="SAlign" value>                        
              <param name="Menu" value="-1">                        
              <param name="Base" value>                        
              <param name="AllowScriptAccess" value="always">                        
              <param name="Scale" value="ShowAll">                        
              <param name="DeviceFont" value="0">                        
              <param name="EmbedMovie" value="0">                        
              <param name="BGColor" value>                        
              <param name="SWRemote" value><embed src="http://www.jzwx.com/emailsend/A02.swf" quality="high" pluginspage="http://www.macroindexphoto.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="110" height="60"></embed>                         
        </OBJECT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>                        
</div>                        
<table height="35">                        
  <TBODY>                        
<td height="31">                       
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760>                       
  <TBODY>                       
  <TR>                       
          <TD background=http://www.jzwx.com/emailsend/index2_bg2.gif><IMG height=5                        
      src="index2_bg2.gif" width=1></TD>          
        </TR></TBODY></TABLE>                       
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760>                       
  <TBODY>                       
  <TR align=left bgColor=#2e6083>                       
          <TD vAlign=top width=160><IMG src="http://www.jzwx.com/emailsend/index2_home.gif"                        
      width=160></TD>                       
    <TD bgColor=#2e6083 vAlign=bottom width=595>&nbsp;| <A class=white                           
      href="http://www.jzwx.com/SuandDe_Info.asp" target=_parent><FONT                           
      color=#ffffff>供求快讯</FONT></A>| <A class=white                           
      href="http://www.jzwx.com/pSuandDe_Info.asp" target=_parent><FONT                           
      color=#ffffff>供求专版</FONT></A>| <A class=white                           
      href="http://www.jzwx.com/Query_Form.asp?boardid=0" target=_parent><FONT                           
      color=#ffffff>资源查询</FONT></A>| <A class=white                           
      href="http://www.jzwx.com/InfoCenter.asp" target=_parent><FONT                           
      color=#ffffff>资讯中心</FONT></A>| <A class=white                           
      href="http://www.jzwx.com/DayForArea.asp" target=_parent><FONT                           
      color=#ffffff>每日行情</FONT></A>| <A class=white                           
      href="http://www.jzwx.com/Fittings/" target=_parent><FONT                           
      color=#ffffff>机电配件区</FONT></A>| <A class=white                           
      href="http://www.jzwx.com/gbIndex.asp" target=_parent><FONT                           
      color=#ffffff>访客留言</FONT></A>| <A class=white                           
      href="http://www.jzwx.com/Member_Center.asp" target=_parent><FONT                           
      color=#ffffff>会员中心</FONT></A></TD></TR></TBODY></TABLE>                          
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760 height="1">                          
  <TBODY>                          
  <TR>                          
          <TD background=http://www.jzwx.com/emailsend/index2_bg3.gif height="1"><IMG height=7                           
      src="index2_bg3.gif" width=1></TD>           
        </TR></TBODY></TABLE>                 
   
  </TBODY>                         
</table>                         
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;                 
tab-stops:list 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><font color="#FF0000" size="6" face="楷体_GB2312">免费注册高级会员,尽享无限资讯！</font></span></b></p>              
              
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;              
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">快快登录</span><span style="mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><a href="http://www.jzwx.com"><font color="#0000FF">九州物资信息网(<span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">http://www.jzwx.com)</span></font></a></span>， 
<span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">点击“<a href="http://www.jzwx.com/Member_agree.asp"><font color="#0000FF">会员注册</font></a>”，只需几分钟，<a href="http://www.jzwx.com/Member_reg.asp"><font color="#0000FF">注册为高级会员</font></a>后，就可免费发布供求快</span></p> 
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;            
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><a href="mailto:讯、免费发布供求专版（将您要发布的专版内容发电子邮件到gqzb@jzwx.com）、免费搜索资源信息、免费查阅各类资讯，尽在">讯、免费发布供求专版（将您要发布的专版内容发电子邮件到gqzb@jzwx.com）、免费搜索资源信息、免费查阅各类资讯，尽在</a></span></p> 
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;            
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">掌握之中！（至少相当于送您5000元/年）</span></p> 
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;            
tab-stops:list 36.0pt" align="left"><b><blink><span style="mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><font face="楷体_GB2312" size="5" color="#FF0000">机会难得，不容错过，行动要快！</font></span></blink></b></p> 
          
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/"><font color="#0000FF">网站简介：</font></a></span></b></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">       
  </span><a href="http://www.jzwx.com"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><font color="#0000FF">九州物资信息网</font></span><font color="#0000FF"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">（</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">www.jzwx.com</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">）</span></font></a><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">系钢铁专业信息网站，设有“钢材、机电配件”两个大区，每区下面设有</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 
宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">供求快讯</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">供求专版</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资讯中心</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-fam
ily: Times New Roman; mso-hansi-font-family: Times New Roman">每日行情</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资源查询</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、“</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">WTO</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">知识讲座”、“资料中心”等栏目以及“每日热点资源”、</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">“呼叫中心”“客户服务”、“网站导航”等子栏目；同时，网站还链接了国内大型钢铁企</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">业及国内外相关钢铁信息网站。本站</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">将为没有企业网站的会员免费制作精美的宣传主页。通过本站，可以随时随地的查询大量的资讯及可供资源信息，为会员提供第</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">一手决策</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资料。</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>       
  </o:p> </span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><font color="#0000FF"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/SuandDe_Info.asp" style="color: #0000FF">供求快讯</a></span></b></font><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><font color="#0000FF"><a href="http://www.jzwx.com/SuandDe_Info.asp">：</a></font>了解最新的供求信息，把握瞬息万变的商机；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>          
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/pSuandDe_Info.asp"><font color="#0000FF">供求专版：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">按会员查询供求信息，为您与客户提供面对面的交流；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>          
</o:p>          
</span></p>          
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/Query_Form.asp?boardid=0"><font color="#0000FF">资源查询：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">搜索到本网站所有的资源信息，可以按品名、规格、材质、生产厂家、交货地等多个关键字段进行搜索；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/InfoCenter.asp"><font color="#0000FF">资讯中心：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">及时了解市场第一手资讯，为经营提供决策信息。可按行业动态、财经要闻、市场分析、钢厂价格、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">WTO</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">与进出口等</span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">栏目分别查阅，其中钢厂价格下面又可按</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">钢厂查询；万千资讯，应有尽有！</span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/DayForArea.asp"><font color="#0000FF">每日行情：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">及时了解全国数十个大中城市的各品种即时行情及价格走势；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/Member_Center.asp"><font color="#0000FF">会员中心：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">会员可以发布、修改、更新、删除会员自己的可供资源、发布供求快讯、维护注册档案信息；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">      
  &nbsp; </span></p>        
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt">更多栏目</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">，请登录<font color="#0000FF"><a href="http://www.jzwx.com" style="color: #0000FF">Http://www.jzwx.com</a></font></span></p>       
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><a href="http://www.jzwx.com/">“</a></span><a href="http://www.jzwx.com/"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">九州物资信息网</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span></a><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">网站信息专业性强、更新速度快、贴近市场，在此热忱欢迎广大资源厂家、代理商、客户加入我们，共同发</span>        
</p>            
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">展！同时还真诚地希望多多给我们提出改进、提高的建设性意见。</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>        
  &nbsp; </span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><br>        
  <br>        
  </span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><b>武汉海纳科技信息有限公司<a href="http://www.jzwx.com">（九州物信</a></b></span><b><a href="http://www.jzwx.com"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">http://www.jzwx.com</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">）</span></a><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Tim
es New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><br>        
  </span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">地　址：武汉市武昌区阅马场云鹤大厦</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><br>        
  E-mail</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">：</span><span lang="EN-US"><a href="mailto:cqs@whsk.com"><span style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><font color="#0000FF">webmaster@jzwx.com</font></span></a></span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><br>        
  </span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">电　话：</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">027-88328695<br>    
  </span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">传　真：</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">027-88053507<br>    
  </span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">邮　编：</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">430060</span>     
</b>     
</p>         
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;        
tab-stops:list 36.0pt">本邮件是善意邮件,如果您觉得有用,请把它保存下来或推荐给需要它的朋友;如果您觉得它没用,请随手删除;如果您以后不想再收</p>        
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;        
tab-stops:list 36.0pt">到类似邮件,请发信到<a href="mailto:remove@jzwx.com"><font color="#0000FF">remove@jzwx.com</font></a>.谢谢!</p>        
</BODY>

From 51dream@hotmail.com Sat Mar  8 04:56:20 2003
Received: from [IPv6:::ffff:218.242.95.249] ([IPv6:::ffff:218.242.95.249]:6161
	"HELO 179632") by humbolt.nl.linux.org with SMTP id <S18155AbTCHDz7>;
	Sat, 8 Mar 2003 04:55:59 +0100
Reply-To: 51dream@hotmail.com
From:	=?ISO-8859-1?Q?=CE=B4=B3=C9=C4=EA<51dream@hotmail.com>?=
Subject: =?ISO-8859-1?Q?=CE=B4=B3=C9=C4=EA?=
Sender:	=?ISO-8859-1?Q?=CE=B4=B3=C9=C4=EA<51dream@hotmail.com>?=
Mime-Version: 1.0
Content-Type: text/html; charset="GB2312"
Date:	Sat, 8 Mar 2003 11:51:48 +0800
Message-Id: <20030308035610Z18155-10185+1223@humbolt.nl.linux.org>
To:	unlisted-recipients:; (no To-header on input)
Return-Path: <51dream@hotmail.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>唯美天堂</title>
</head>
<body>
<p>
<a href="http://asp.51dream.com/paradise" target="_blank">
<img border="0" src="http://asp.51dream.com/paradise/pic/10012.jpg" width="445" height="764"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10090.jpg" width="613" height="878"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10122.jpg" width="525" height="768"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10153.jpg" width="600" height="850"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10206.jpg" width="393" height="540"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10294.jpg" width="554" height="772"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10337.jpg" width="545" height="763"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10391.jpg" width="556" height="779"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10444.jpg" width="429" height="600"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10465.jpg" width="553" height="561"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10517.jpg" width="600" height="850"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10562.jpg" width="460" height="644"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10602.jpg" width="536" height="832"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10671.jpg" width="477" height="666"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise<br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10741.jpg" width="395" height="585"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise <br>
<img border="0" src="http://asp.51dream.com/paradise/pic/10760.jpg" width="732" height="900"><br>
欢迎光临 “唯美天堂” http://asp.51dream.com/paradise</a>
</p>
</body>
</html><p>　</p>

<p>　</p>

<p><font color="#FF0000">-------------------------------------------<br>
</font>本邮件系采用“无需SMTP高速邮件发送”软件发送<br>
OICQ号码:114075303 <a href="http://emailsender.ohgo.com/">http://emailsender.ohgo.com</a><br>
<font color="#FF0000">-------------------------------------------<br>
</font></p>

<p>　</p>

From linux-mm-bugs-bounce@nl.linux.org Mon Mar 17 04:23:53 2003
Received: from localhost.nl.linux.org ([IPv6:::ffff:127.0.0.1]:34219 "EHLO
	humbolt.") by humbolt.nl.linux.org with ESMTP id <S138176AbTCQDXo>;
	Mon, 17 Mar 2003 04:23:44 +0100
Received: with LISTAR (v1.0.0; list linux-mm-bugs); Mon, 17 Mar 2003 04:23:36 +0100 (CET)
Received: from [IPv6:::ffff:61.165.25.131] ([IPv6:::ffff:61.165.25.131]:5386
	"HELO 43.21.26.17") by humbolt.nl.linux.org with SMTP
	id <S138149AbTCQDXP>; Mon, 17 Mar 2003 04:23:15 +0100
From:	SubmitWolf <look@hotmail.com>
To:	linux-mm-bugs@nl.linux.org
Subject: =?gb2312?q?=B5=C7=C2=BD_Yahoo,_Google_...?=
Date:	Mon, 17 Mar 2003 11:22:21 +0800
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="d3f28473-585f-11d7-9f0d-00e04c812a5e"
Message-Id: <20030317032316Z138149-14882+1397@humbolt.nl.linux.org>
X-Spam-Status: No, hits=2.3 required=5.0 tests=CHARSET_FARAWAY_HEADERS,DIFFERENT_REPLY_TO,FORGED_HOTMAIL_RCVD version=2.20
X-Spam-Level: **
X-listar-version: Listar v1.0.0
Sender:	linux-mm-bugs-bounce@nl.linux.org
Errors-to: linux-mm-bugs-bounce@nl.linux.org
X-original-sender: look@hotmail.com
Precedence: bulk
Reply-to: linux-mm-bugs@nl.linux.org
List-help: <mailto:listar@nl.linux.org?Subject=help>
List-unsubscribe: <mailto:linux-mm-bugs-request@nl.linux.org?Subject=unsubscribe>
List-software: Listar version 1.0.0
X-List-ID: <linux-mm-bugs.nl.linux.org>
List-subscribe:	<mailto:linux-mm-bugs-request@nl.linux.org?Subject=subscribe>
List-owner: <mailto:riel@nl.linux.org>
List-post: <mailto:linux-mm-bugs@nl.linux.org>
List-archive: <http://mail.nl.linux.org/linux-mm-bugs/>
X-list:	linux-mm-bugs
Return-Path: <linux-mm-bugs-bounce@nl.linux.org>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org


This is a multi-part message in MIME format
--d3f28473-585f-11d7-9f0d-00e04c812a5e
Content-Type: text/plain; charset=gb2312
Content-Transfer-Encoding: quoted-printable

 
=C8=B7=B1=A3=C4=FA=B5=C4=CD=F8=D5=BE=CC=E1=BD=BB=B5=BD Yahoo, Google, AOL, =
MSN, InfoSeek, Lycos, Excite, HotBot, About, Altavista, Snap, Netscape=B5=C8=
20=B8=F6=B9=FA=BC=CA=B6=A5=BC=B6=CB=D1=CB=F7=D2=FD=C7=E6=D6=D0=A3=AC=CA=C7=CD=
=E2=CF=F2=D0=CD=CD=F8=D5=BE=BD=F8=D0=D0=B9=FA=BC=CA=BB=AF=CD=C6=B9=E3=D7=EE=BC=
=D1=D1=A1=D4=F1=A1=A3

=CF=EA=CF=B8=C7=EB=BF=B4=A3=BAhttp://www.tiandaotech.com

--------------------------------------
=C9=CF=BA=A3=CC=EC=B5=C0=BF=C6=BC=BC=B7=A2=D5=B9=D3=D0=CF=DE=B9=AB=CB=BE
Tel: 021-6225 2789  Fax: 021-6240 7455
email: market@tiandaotech.com  
--d3f28473-585f-11d7-9f0d-00e04c812a5e--

--
Linux-mm-bugs:  bugzilla list for the Linux-MM subsystem
Archive:        http://mail.nl.linux.org/linux-mm-bugs/
Web site:       http://linux-mm.org/
Development:    linux-mm@kvack.org


From wangjdr@sina.com Tue Mar 18 12:54:28 2003
Received: from [IPv6:::ffff:61.149.0.244] ([IPv6:::ffff:61.149.0.244]:47880
	"HELO lovexin.com") by humbolt.nl.linux.org with SMTP
	id <S142496AbTCRLyO>; Tue, 18 Mar 2003 12:54:14 +0100
From:	"wangjdr" <wangjdr@sina.com>
To:	<linux-mm-bugs-archive@nl.linux.org>
Subject: =?ISO-8859-1?Q?=B3=CF=D5=F7=C8=AB=B9=FA=BE=C6=D2=B5=CF=FA=CA=DB=B4=FA=C0=ED?=
Mime-Version: 1.0
Content-Type: text/plain; charset="GB2312"
Date:	Tue, 18 Mar 2003 19:53:27 +0800
X-Priority: 3
X-Mailer: JiXing mailer V1.73 Design By JohnnieHuang
Message-Id: <20030318115419Z142496-14882+1882@humbolt.nl.linux.org>
Return-Path: <wangjdr@sina.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

宣传主题：  诚征全国酒业销售代理

本站长现拥有成都某品牌酒厂的北方地区酒业销售总代理权，现诚征北方地区各地方代理；南方地区可视当地代理情况，确定代理权；该酒包装精美，酒质醇香，为浓香型川酒，酒味近似第一品牌--五粮液，本酒质地绝对一流，从36度～55度均有现货供应，并可根据地方口味作适当调整；诚请有意合作者及时与我们联络，我们将及时将宣传图片及价目表以附件方式电邮客户。
联系方式：  wangjdr@sina.com


网站：       http://mywjlh.yeah.net



==========================================================================

中资源公司http://www.net001.net 提供域名先注册后付款;主机先开通后收费服务,
中途可退款。特惠推荐：域名+100M主机并附送5个10M企业邮箱，每年只需350元！！

使用极星邮件群发，无须通过邮件服务器，直达对方邮箱，速度绝对一流！
下载网址：http://www.lovexin.com，更多免费的超酷软件等你来下……

From linux-mm-bugs-bounce@nl.linux.org Wed Mar 19 20:39:01 2003
Received: from localhost.nl.linux.org ([IPv6:::ffff:127.0.0.1]:9370 "EHLO
	humbolt.") by humbolt.nl.linux.org with ESMTP id <S258814AbTCSTi5>;
	Wed, 19 Mar 2003 20:38:57 +0100
Received: with LISTAR (v1.0.0; list linux-mm-bugs); Wed, 19 Mar 2003 20:38:50 +0100 (CET)
Received: from [IPv6:::ffff:218.109.51.129] ([IPv6:::ffff:218.109.51.129]:51730
	"HELO 19.40.44.20") by humbolt.nl.linux.org with SMTP
	id <S258789AbTCSTiY>; Wed, 19 Mar 2003 20:38:24 +0100
From:	ting <ing88@263.com>
To:	linux-mm-bugs@nl.linux.org
Subject: =?gb2312?q?=CD=C6=BC=F6=A3=AC=CB=C4=CD=F2=CA=D7=B8=E8=C7=FA=B5=C8=C4=E3=C0=B4=CC=FD?=
Date:	Thu, 20 Mar 2003 03:41:07 +0800
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="f6911bc4-bc87-4840-9ffe-51a34cae8994"
Message-Id: <20030319193827Z258789-6246+1324@humbolt.nl.linux.org>
X-Spam-Status: No, hits=4.7 required=5.0 tests=FROM_ENDS_IN_NUMS,CHARSET_FARAWAY_HEADERS,SUBJ_ALL_CAPS version=2.20
X-Spam-Level: ****
X-listar-version: Listar v1.0.0
Sender:	linux-mm-bugs-bounce@nl.linux.org
Errors-to: linux-mm-bugs-bounce@nl.linux.org
X-original-sender: ing88@263.com
Precedence: bulk
Reply-to: linux-mm-bugs@nl.linux.org
List-help: <mailto:listar@nl.linux.org?Subject=help>
List-unsubscribe: <mailto:linux-mm-bugs-request@nl.linux.org?Subject=unsubscribe>
List-software: Listar version 1.0.0
X-List-ID: <linux-mm-bugs.nl.linux.org>
List-subscribe:	<mailto:linux-mm-bugs-request@nl.linux.org?Subject=subscribe>
List-owner: <mailto:riel@nl.linux.org>
List-post: <mailto:linux-mm-bugs@nl.linux.org>
List-archive: <http://mail.nl.linux.org/linux-mm-bugs/>
X-list:	linux-mm-bugs
Return-Path: <linux-mm-bugs-bounce@nl.linux.org>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org


This is a multi-part message in MIME format
--f6911bc4-bc87-4840-9ffe-51a34cae8994
Content-Type: text/plain; charset=gb2312
Content-Transfer-Encoding: quoted-printable

 =BE=C5=CC=EC=CC=FD=B0=C9=A3=A8http://www.ting88.com
=C4=BF=C7=B0=D3=B5=D3=D0=CB=C4=CD=F2=B6=E0=CA=D7=D6=D0=CD=E2=B8=E8=C7=FA=A3=AC=
=D3=B5=D3=D02=CD=F2=B6=E0=CA=D7=B8=E8=B4=CA=A3=AC=D3=B5=D3=D0=BA=DC=B6=E0=D3=
=C5=D6=CA=B5=C4MTV=CF=C2=D4=D8=A1=A3
=C1=A6=D5=F9=B3=C9=CE=AA=D6=D0=B9=FA=CA=D3=CC=FD=D2=F4=C0=D6=B5=DA=D2=BB=D5=BE=
=A1=A3
=D7=EE=BD=FC=CE=D2=C3=C7=D0=C2=D4=F6=BC=D3=D2=BB=CC=A8=B7=FE=CE=F1=C6=F7=A3=AC=
=CA=D3=CC=FD=CB=D9=B6=C8=B5=C3=B5=BD=C1=CB=BA=DC=B4=F3=B5=C4=D4=F6=B3=A4=A1=A3=

=B8=CF=BF=EC=C0=B4=B0=C9=A3=AC=B0=AE=BA=C3=D2=F4=C0=D6=B5=C4=C5=F3=D3=D1=C3=C7=
=A3=A1
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D
=C8=E7=B9=FB=BE=F5=B5=C3=BA=C3=A3=AC=C7=EB=B0=D1=C9=CF=C3=E6=B5=C4=BB=B0=B7=A2=
=B8=F8=C4=E3=B5=C410=CE=BBQQ=C9=CF=B5=C4=C5=F3=D3=D1=A3=AC=CE=D2=C3=C7=BD=AB=
=B8=D0=D0=BB=C4=FA=B5=C4=D6=A7=B3=D6=A3=A1
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=C8=E7=B9=FB=D5=E2=B7=E2=D0=C5=B4=F2=C8=C5=C1=CB=C4=FA=A3=AC=C7=EB=CB=FC=CB=FB=
=C9=BE=B5=F4=A3=A1
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=CE=E4=CF=C0=CD=F8=C2=E7=D3=CE=CF=B7=A3=BAhttp://hz.skyjh.com  
--f6911bc4-bc87-4840-9ffe-51a34cae8994--

--
Linux-mm-bugs:  bugzilla list for the Linux-MM subsystem
Archive:        http://mail.nl.linux.org/linux-mm-bugs/
Web site:       http://linux-mm.org/
Development:    linux-mm@kvack.org


From service@coffeeam.com Tue Mar 25 01:30:52 2003
Received: from [IPv6:3ffe:8260:10f:ffff::2] ([IPv6:3ffe:8260:10f:ffff::2]:8398
	"EHLO imladris.surriel.com") by humbolt.nl.linux.org with ESMTP
	id <S16974AbTCYAae>; Tue, 25 Mar 2003 01:30:34 +0100
Received: from [IPv6:::ffff:211.250.166.131] ([IPv6:::ffff:211.250.166.131]:20498
	"HELO 211.250.166.131") by imladris.surriel.com with SMTP
	id <S81575AbTCYASL>; Mon, 24 Mar 2003 19:18:11 -0500
From:	ted@tashun.com <service@coffeeam.com>
To:	linux-mm-bugs-archive@nl.linux.org
Subject: Real DIY products for entrepreneurs
Sender:	ted@tashun.com <service@coffeeam.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date:	Tue, 25 Mar 2003 08:18:12 +0800
X-Mailer: The Bat! (v1.52f) Business
X-Priority: 1
Message-Id: <20030325001820Z81575-32359+529@imladris.surriel.com>
Return-Path: <service@coffeeam.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="Microsoft FrontPage 5.0" name=GENERATOR></HEAD>
<BODY>
<TABLE style="WIDTH: 497px; HEIGHT: 491px" width=497 align=center border=0>
  
  <TR>
    <TD width=713>
      <P align=center><FONT face=Arial color=blue><B><SPAN 
      style="BACKGROUND-COLOR: red">**** Wanted ONLY Serious***<BR></SPAN></B></FONT><FONT face=Arial color=blue><B>Wholesalers! <FONT 
      color=#800080>Distributors!</FONT> <FONT color=#800000>Importers!</FONT> 
      <FONT color=#8000ff>Exporters!<BR><BR></FONT></B></FONT><FONT 
      style="BACKGROUND-COLOR: #ffffff" face=Arial color=#33ff66><B><SPAN 
      style="BACKGROUND-COLOR: rgb(102,102,102)">To carry our exclusive 
      Multifunction </SPAN></B></FONT><FONT 
      face=Arial color=blue><B><BR></B></FONT><B><FONT face=Arial 
      color=#330000>Newly Invented Quality Products:<br>
      <br>
      </FONT><span style="background-color: #FFFF00">
      <font face="Arial" color="#800000">Newly invented </font></span>
      <FONT face=Arial 
      color=#800000><span style="background-color: #FFFF00">Mosquito Killer Fan!</span></FONT></B></P>
      <div align="center">
        <center>
      <TABLE style="WIDTH: 489px; HEIGHT: 105px; border-collapse:collapse" width=489 
border=0 bgcolor="#C0C0C0" bordercolor="#111111" cellpadding="0" cellspacing="0">
        
        <TR>
          <TD width=347>
            <P align=center><FONT face=Arial color=#330000><B>Auto-Toilet, D-I-Y 
            Kitchen, <u>Laundry and &nbsp;Bathroom</u> Products with powerful suction 
            capability.</B></FONT></P></TD>
          <TD width=364>
            <P align=center><FONT face=Arial color=#990000><B><SPAN 
            style="BACKGROUND-COLOR: white"><u>Voice Changer - Angel Speaking</u> 
            Wireless Remote Control Pager &nbsp;<u>E-Pager - Tone &nbsp;and 
            Vibration</u> Only.... and more to come 
        soon...</SPAN></B></FONT></P></TD></TR></TABLE>
        </center>
      </div>
      <P align=left><FONT face=Arial color=blue><B>We offers the very best in 
      luxury Kitchen and Bath products, unsurpassed in quality, many of which 
      are unique to the market.</B></FONT></P>
      <P align=center><FONT face=Arial color=yellow><B><SPAN 
      style="BACKGROUND-COLOR: rgb(0,102,102)">These are 
      real products from TAIWAN<BR>     
      </SPAN></B></FONT><FONT face=Arial color=#ffff33><B><SPAN 
      style="BACKGROUND-COLOR: rgb(153,0,102)">If you are 
      looking for real products to sell in your market..<BR><BR>
      <TABLE style="WIDTH: 410px; HEIGHT: 61px" borderColor=#808080 
      cellSpacing=0 borderColorDark=#808080 cellPadding=0 width=410 
      bgColor=#ffffff borderColorLight=#c0c0c0 border=0>
        
        <TR>
          <TD noWrap>&nbsp;</TD>
          <TD noWrap>
            <P align=center><A href="mailto:12sales@amtradebiz.com?subject=Pls send information on Household and Electronic Products"><B><FONT 
      face=Arial color=#330099>Please contact us</FONT></B></A><BR><B><FONT 
      face=Arial color=#330099>for more details.</FONT></B></P></TD>
          <TD noWrap>&nbsp;</TD></TR></TABLE>      
           </SPAN></B></FONT><A href="mailto:12sales@amtradebiz.com?subject=Pls send information on Household and Electronic Products"><B><FONT 
      face=Arial color=#330099></FONT></B></A></P>
      <P align=left><FONT face=Arial color=blue size=1><B>&nbsp;</B></FONT><FONT 
      face=Arial color=black size=1><B>UNSUBSCRIBE 
      <BR>*********************************************************** 
      &nbsp;<BR>This &nbsp;&nbsp;is &nbsp;&nbsp;an Ultimate-Target Mailing List. 
      You were subscribed to this Business Opportunity service through one of 
      our business partner sites.<BR>If you believe this email has reached you 
      in error or if you no longer wish to receive these <BR>updates. Please, 
      &nbsp;</B></FONT><A href="mailto:remove@amtradebiz.com?subject=UNSUBSCRIBE"><B><FONT 
      face=Arial color=black size=1>reply to this e-mai</FONT></B></A><FONT 
      face=Arial color=black size=1><B>l, or click the link with "</B></FONT><A href="mailto:remove@amtradebiz.com?subject=UNSUBSCRIBE"><B><FONT 
      face=Arial color=black size=1>UNSUBSCRIBE</FONT></B></A><FONT face=Arial 
      color=black size=1><B>" in subject line. 
      &nbsp;<BR>*********************************************************** 
      </B></FONT></P></TD></TR></TABLE>
<P><FONT face=Arial color=blue><B></B></FONT>&nbsp;</P></BODY></HTML>

From cqs@yahoo.com.cn Tue Mar 25 05:53:11 2003
Received: from [IPv6:::ffff:61.183.183.230] ([IPv6:::ffff:61.183.183.230]:260
	"HELO RsProxy") by humbolt.nl.linux.org with SMTP id <S17503AbTCYExC>;
	Tue, 25 Mar 2003 05:53:02 +0100
From:	=?GB2312?B?vsXW3c7v18rQxc+izfg=?= <cqs@yahoo.com.cn>
Subject: =?GB2312?B?bGludXgtbW0tYnVncy1hcmNoaXZlLMT6usOjobbUxPrJ+tLi09Cw79b6o6y2?=
Message-Id: <20030325045305Z17503-11686+465@humbolt.nl.linux.org>
To:	unlisted-recipients:; (no To-header on input)
Date:	Tue, 25 Mar 2003 05:53:02 +0100
Return-Path: <cqs@yahoo.com.cn>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

 =?GB2312?B?+MfSvvi21MPit9GjoQ==?=
To: linux-mm-bugs-archive@nl.linux.org
Content-Type: text/html;charset="GB2312"
Date: Tue, 25 Mar 2003 12:53:40 +0800
X-Priority: 3
X-Mailer: FoxMail 3.11 Release [cn]

<HTML><HEAD><TITLE>九州物资信息网--首页</TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<META content=从事信息服务、网上交易、网上分销、网上采购、网站建设、解决方案等，是一个专注于钢铁业的电子商务公司。 
name=DESCRIPTION>
<META content=钢铁,钢厂,生铁，炉料,铁合金,金属,冶金,废钢,信息,电子商务,ERP,仓储,配送,焦碳, name=keywords>
<SCRIPT language=javascript>
function openUser(id) {
	var Win = window.open("dispuser.asp?name="+id,"openScript");
}

function openScript(url, width, height){
	var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
}

function openDis(bid,rid,id){
	self.location="GBook_read.asp?boardid="+bid+"&RootID="+rid+"&id="+id
}

function PopWindow()
{ 
openScript('messanger.asp?action=newmsg',420,320); 
}
var nn = !!document.layers;
var ie = !!document.all;

if (nn) {
  netscape.security.PrivilegeManager.enablePrivilege("UniversalSystemClipboardAccess");
  var fr=new java.awt.Frame();
  var Zwischenablage = fr.getToolkit().getSystemClipboard();
}

function submitonce(theform){
//if IE 4+ or NS 6+
if (document.all||document.getElementById){
//screen thru every element in the form, and hunt down "submit" and "reset"
for (i=0;i<theform.length;i++){
var tempobj=theform.elements[i]
if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
//disable em
tempobj.disabled=true
}
}
}
</SCRIPT>

<SCRIPT language=JavaScript>
//***********默认设置定义.*********************
tPopWait=50;//停留tWait豪秒后显示提示。
tPopShow=5000;//显示tShow豪秒后关闭提示
showPopStep=20;
popOpacity=99;

//***************内部变量定义*****************
sPop=null;
curShow=null;
tFadeOut=null;
tFadeIn=null;
tFadeWaiting=null;

document.write("<style type='text/css'id='defaultPopStyle'>");
document.write(".cPopText {  background-color: #F8F8F5;color:#000000; border: 1px #000000 solid;font-color: font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}");
document.write("</style>");
document.write("<div id='dypopLayer' style='position:absolute;z-index:1000;' class='cPopText'></div>");


function showPopupText(){
var o=event.srcElement;
	MouseX=event.x;
	MouseY=event.y;
	if(o.alt!=null && o.alt!=""){o.dypop=o.alt;o.alt=""};
        if(o.title!=null && o.title!=""){o.dypop=o.title;o.title=""};
	if(o.dypop!=sPop) {
			sPop=o.dypop;
			clearTimeout(curShow);
			clearTimeout(tFadeOut);
			clearTimeout(tFadeIn);
			clearTimeout(tFadeWaiting);	
			if(sPop==null || sPop=="") {
				dypopLayer.innerHTML="";
				dypopLayer.style.filter="Alpha()";
				dypopLayer.filters.Alpha.opacity=0;	
				}
			else {
				if(o.dyclass!=null) popStyle=o.dyclass 
					else popStyle="cPopText";
				curShow=setTimeout("showIt()",tPopWait);
			}
			
	}
}

function showIt(){
		dypopLayer.className=popStyle;
		dypopLayer.innerHTML=sPop;
		popWidth=dypopLayer.clientWidth;
		popHeight=dypopLayer.clientHeight;
		if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
			else popLeftAdjust=0;
		if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
			else popTopAdjust=0;
		dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
		dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
		dypopLayer.style.filter="Alpha(Opacity=0)";
		fadeOut();
}

function fadeOut(){
	if(dypopLayer.filters.Alpha.opacity<popOpacity) {
		dypopLayer.filters.Alpha.opacity+=showPopStep;
		tFadeOut=setTimeout("fadeOut()",1);
		}
		else {
			dypopLayer.filters.Alpha.opacity=popOpacity;
			tFadeWaiting=setTimeout("fadeIn()",tPopShow);
			}
}

function fadeIn(){
	if(dypopLayer.filters.Alpha.opacity>0) {
		dypopLayer.filters.Alpha.opacity-=1;
		tFadeIn=setTimeout("fadeIn()",1);
		}
}
document.onmouseover=showPopupText;
</SCRIPT>

<STYLE type=text/css>A:visited {
	COLOR: #000000; TEXT-DECORATION: none
}
A:active {
	COLOR: red; TEXT-DECORATION: none
}
A:hover {
	COLOR: red; TEXT-DECORATION: underline
}
A:link {
	COLOR: #000000; TEXT-DECORATION: none
}
.navPoint {
	COLOR: white; CURSOR: hand; FONT-FAMILY: Webdings; FONT-SIZE: 9pt
}
.t {
	LINE-HEIGHT: 1.4
}
.newwhite {
	COLOR: #ffffff; FONT-SIZE: 12px; TEXT-DECORATION: none
}
.white1 {
	COLOR: #ffffff; FONT-SIZE: 12px; LINE-HEIGHT: 220%; TEXT-DECORATION: none
}
BODY {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px; SCROLLBAR-HIGHLIGHT-COLOR: #84B1D2; SCROLLBAR-SHADOW-COLOR: #84B1D2; SCROLLBAR-3DLIGHT-COLOR: #84B1D2; SCROLLBAR-TRACK-COLOR: #FFFFFF; SCROLLBAR-DARKSHADOW-COLOR: #84B1D2; scrollbar-Base-Color: #84B1D2
}
TD {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
P {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
DIV {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
BR {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
FORM {
	FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
OPTION {
	FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
LI {
	COLOR: #094366; FONT-SIZE: 9pt; LINE-HEIGHT: 16px; LIST-STYLE: url(images/dot1.gif); TEXT-INDENT: 5pt
}
INPUT {
	BORDER-BOTTOM-COLOR: #cccccc; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #cccccc; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #cccccc; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cccccc; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px; HEIGHT: 15pt; PADDING-BOTTOM: 1px; PADDING-LEFT: 1px; PADDING-RIGHT: 1px; PADDING-TOP: 1px
}
TEXTAREA {
	BACKGROUND-COLOR: #efefef; BORDER-BOTTOM-COLOR: #000000; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #000000; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #000000; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #000000; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
SELECT {
	BACKGROUND-COLOR: #eeeeee; BORDER-BOTTOM-COLOR: #000000; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #000000; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #000000; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #000000; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
.input1 {
	BACKGROUND-COLOR: #e7e7e7; BORDER-BOTTOM-STYLE: solid; BORDER-LEFT-STYLE: solid; BORDER-RIGHT-STYLE: solid; BORDER-TOP-STYLE: solid
}
</STYLE>
<!-- background-color: #E4E4E4;border-width: 0 ; -->
<META content="Microsoft FrontPage 4.0" name=GENERATOR>
<style fprolloverstyle>A:hover {color: red; font-weight: bold}
</style>
</HEAD>
<BODY bgColor=#ffffff leftMargin=0 topMargin=0 link="#0000FF" vlink="#990066" alink="#FF0000">
<div align="left">
<TABLE border=0 cellPadding=0 cellSpacing=0 height=68 width=768>
  <TBODY>
  <TR>
    <TD align=middle class=button rowSpan=2 vAlign=center width=163 height="68">
        <p align="center"><img border="0" src="http://www.jzwx.com/emailsend/logo4.jpg" width="150" height="100"></p>
    </TD>
    <TD align=right class=button colSpan=2 vAlign=center height="25">
      <TABLE border=0 cellPadding=0 cellSpacing=0 height=20 width="100%">
        <TBODY>
        <TR>
          <TD>
            <P align=right><a href="http://www.jzwx.com">http://www.jzwx.com&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;               
            &nbsp;<A href="http://www.jzwx.com/"               
            target=_parent>首页</A> | <A                            
            href="http://www.jzwx.com/Member_agree.asp" target=_parent>会员注册</A>                            
            | <A href="http://www.jzwx.com/Service.asp" target=_parent>客户服务</A>                            
            | <A href="http://www.jzwx.com/navagation.asp"                            
            target=_parent>网站导航</A> | <A href="http://www.jzwx.com/help.asp"                            
            target=_parent>帮助</A> <B>2003年2月10日</B> </P>                           
          <TD></TD></TR></TBODY></TABLE>                           
      <TABLE border=0 cellPadding=0 cellSpacing=0 width="75%">                           
        <TBODY>                           
        <TR>                           
          <TD bgColor=#999999><IMG height=1 src="space3.gif"                            
            width=1></TD></TR></TBODY></TABLE></TD></TR>                           
  <TR>                           
    <TD align=left class=button vAlign=center width=489 height="43">                           
      <TABLE bgColor=#000000 border=0 cellPadding=0 cellSpacing=1>                           
        <TBODY>                           
        <TR>                           
            <TD align=middle bgColor=#ffffff> <object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000                            
            codebase=http://download.macroindexphoto.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0                            
            height=60 width=468>            
                <param name="_cx" value="12383">  
                <param name="_cy" value="1588">  
                <param name="Movie" value="http://www.jzwx.com/indexphoto/banner2.swf">  
                <param name="Src" value="http://www.jzwx.com/indexphoto/banner2.swf">  
                <param name="WMode" value="Transparent">  
                <param name="Play" value="-1">  
                <param name="Loop" value="-1">  
                <param name="Quality" value="High">  
                <param name="SAlign" value>  
                <param name="Menu" value="-1">  
                <param name="Base" value>  
                <param name="Scale" value="ShowAll">  
                <param name="DeviceFont" value="0">  
                <param name="EmbedMovie" value="0">  
                <param name="BGColor" value>  
                <param name="SWRemote" value><embed src="http://www.jzwx.com/emailsend/A01.swf" quality="high" pluginspage="http://www.macroindexphoto.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="468" height="60" wmode="transparent">            
              </object></TD>           
          </TR></TBODY></TABLE></TD>                         
    <TD align=left class=button vAlign=center width=116 height="43">                         
      <TABLE bgColor=#000000 border=0 cellPadding=0 cellSpacing=1 width="90%">                         
        <TBODY>                         
        <TR>                         
            <TD bgColor=#ffffff> <OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000                          
            codeBase=http://download.macroindexphoto.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0                          
            height=60 width=110>           
                <param name="_cx" value="2910">                         
              <param name="_cy" value="1614">                         
              <param name="FlashVars" value="-1">                         
              <param name="Movie" value="http://www.jzwx.com/emailsend/A02.swf">                         
              <param name="Src" value="http://www.jzwx.com/emailsend/A02.swf">                         
              <param name="WMode" value="Window">                         
              <param name="Play" value="-1">                         
              <param name="Loop" value="-1">                         
              <param name="Quality" value="High">                         
              <param name="SAlign" value>                         
              <param name="Menu" value="-1">                         
              <param name="Base" value>                         
              <param name="AllowScriptAccess" value="always">                         
              <param name="Scale" value="ShowAll">                         
              <param name="DeviceFont" value="0">                         
              <param name="EmbedMovie" value="0">                         
              <param name="BGColor" value>                         
              <param name="SWRemote" value><embed src="http://www.jzwx.com/emailsend/A02.swf" quality="high" pluginspage="http://www.macroindexphoto.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="110" height="60"></embed>                          
        </OBJECT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>                         
</div>                         
<table height="35">                         
  <TBODY>                         
<td height="31">                        
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760>                        
  <TBODY>                        
  <TR>                        
          <TD background=http://www.jzwx.com/emailsend/index2_bg2.gif><IMG height=5                         
      src="index2_bg2.gif" width=1></TD>           
        </TR></TBODY></TABLE>                        
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760>                        
  <TBODY>                        
  <TR align=left bgColor=#2e6083>                        
          <TD vAlign=top width=160><IMG src="http://www.jzwx.com/emailsend/index2_home.gif"                         
      width=160></TD>                        
    <TD bgColor=#2e6083 vAlign=bottom width=595>&nbsp;| <A class=white                            
      href="http://www.jzwx.com/SuandDe_Info.asp" target=_parent><FONT                            
      color=#ffffff>供求快讯</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/pSuandDe_Info.asp" target=_parent><FONT                            
      color=#ffffff>供求专版</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/Query_Form.asp?boardid=0" target=_parent><FONT                            
      color=#ffffff>资源查询</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/InfoCenter.asp" target=_parent><FONT                            
      color=#ffffff>资讯中心</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/DayForArea.asp" target=_parent><FONT                            
      color=#ffffff>每日行情</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/Fittings/" target=_parent><FONT                            
      color=#ffffff>机电配件区</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/gbIndex.asp" target=_parent><FONT                            
      color=#ffffff>访客留言</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/Member_Center.asp" target=_parent><FONT                            
      color=#ffffff>会员中心</FONT></A></TD></TR></TBODY></TABLE>                           
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760 height="1">                           
  <TBODY>                           
  <TR>                           
          <TD background=http://www.jzwx.com/emailsend/index2_bg3.gif height="1"><IMG height=7                            
      src="index2_bg3.gif" width=1></TD>            
        </TR></TBODY></TABLE>                  
    
  </TBODY>                          
</table>                          
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;                  
tab-stops:list 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><font color="#FF0000" size="6" face="楷体_GB2312">免费注册高级会员,尽享无限资讯！</font></span></b></p>               
               
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;               
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">快快登录</span><span style="mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><a href="http://www.jzwx.com"><font color="#0000FF">九州物资信息网(<span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">http://www.jzwx.com)</span></font></a></span>，  
<span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">点击“<a href="http://www.jzwx.com/Member_agree.asp"><font color="#0000FF">会员注册</font></a>”，只需几分钟，<a href="http://www.jzwx.com/Member_reg.asp"><font color="#0000FF">注册为高级会员</font></a>后，就可免费发布供求快</span></p>  
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;             
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">讯(在会员中心-供求快讯发布中进行)、免费发布供求专版（将您要发布的专版内容发电子邮件到<a href="mailto:gqzb@jzwx.com"><font color="#0000FF">gqzb@jzwx.com</font></a>）、免费搜索</span></p> 
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;            
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><a href="mailto:讯、免费发布供求专版（将您要发布的专版内容发电子邮件到gqzb@jzwx.com）、免费搜索资源信息、免费查阅各类资讯，尽在">资源信息、免费查阅各类资讯，尽在</a>掌握之中！（至少相当于送您5000元/年）</span></p> 
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;            
tab-stops:list 36.0pt" align="left"><b><blink><span style="mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><font face="楷体_GB2312" size="5" color="#FF0000">机会难得，不容错过，行动要快！</font></span></blink></b></p> 
          
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/"><font color="#0000FF">网站简介：</font></a></span></b></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">       
  </span><a href="http://www.jzwx.com"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><font color="#0000FF">九州物资信息网</font></span><font color="#0000FF"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">（</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">www.jzwx.com</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">）</span></font></a><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">系钢铁专业信息网站，设有“钢材、机电配件”两个大区，每区下面设有</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 
宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">供求快讯</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">供求专版</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资讯中心</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-fam
ily: Times New Roman; mso-hansi-font-family: Times New Roman">每日行情</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资源查询</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、“</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">WTO</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">知识讲座”、“资料中心”等栏目以及“每日热点资源”、</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">“呼叫中心”“客户服务”、“网站导航”等子栏目；同时，网站还链接了国内大型钢铁企</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">业及国内外相关钢铁信息网站。本站</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">将为没有企业网站的会员免费制作精美的宣传主页。通过本站，可以随时随地的查询大量的资讯及可供资源信息，为会员提供第</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">一手决策</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资料。</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>       
  </o:p> </span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><font color="#0000FF"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/SuandDe_Info.asp" style="color: #0000FF">供求快讯</a></span></b></font><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><font color="#0000FF"><a href="http://www.jzwx.com/SuandDe_Info.asp">：</a></font>了解最新的供求信息，把握瞬息万变的商机；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>          
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/pSuandDe_Info.asp"><font color="#0000FF">供求专版：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">按会员查询供求信息，为您与客户提供面对面的交流；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>          
</o:p>          
</span></p>          
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/Query_Form.asp?boardid=0"><font color="#0000FF">资源查询：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">搜索到本网站所有的资源信息，可以按品名、规格、材质、生产厂家、交货地等多个关键字段进行搜索；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/InfoCenter.asp"><font color="#0000FF">资讯中心：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">及时了解市场第一手资讯，为经营提供决策信息。可按行业动态、财经要闻、市场分析、钢厂价格、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">WTO</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">与进出口等</span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">栏目分别查阅，其中钢厂价格下面又可按</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">钢厂查询；万千资讯，应有尽有！</span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/DayForArea.asp"><font color="#0000FF">每日行情：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">及时了解全国数十个大中城市的各品种即时行情及价格走势；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/Member_Center.asp"><font color="#0000FF">会员中心：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">会员可以发布、修改、更新、删除会员自己的可供资源、发布供求快讯、维护注册档案信息；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">      
  &nbsp; </span></p>         
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt">更多栏目</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">，请登录<font color="#0000FF"><a href="http://www.jzwx.com" style="color: #0000FF">Http://www.jzwx.com</a></font></span></p>        
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><a href="http://www.jzwx.com/">“</a></span><a href="http://www.jzwx.com/"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">九州物资信息网</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span></a><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">网站信息专业性强、更新速度快、贴近市场，在此热忱欢迎广大资源厂家、代理商、客户加入我们，共同发</span>         
</p>             
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">展！同时还真诚地希望多多给我们提出改进、提高的建设性意见。</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>         
  &nbsp;</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><br>         
  </span>      
</p>          
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;         
tab-stops:list 36.0pt">本邮件是善意邮件,如果您觉得有用,请把它保存下来或推荐给需要它的朋友;如果您觉得它没用,请随手删除;如果您以后不想再收</p>         
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;         
tab-stops:list 36.0pt">到类似邮件,请发信到<a href="mailto:remove@jzwx.com"><font color="#0000FF">remove@jzwx.com</font></a>.谢谢!</p>         
</BODY>

From MAILER-DAEMON@163.com Wed Mar 26 15:28:15 2003
Received: from [IPv6:3ffe:8260:10f:ffff::2] ([IPv6:3ffe:8260:10f:ffff::2]:34494
	"EHLO imladris.surriel.com") by humbolt.nl.linux.org with ESMTP
	id <S17447AbTCZO2E>; Wed, 26 Mar 2003 15:28:04 +0100
Received: from [IPv6:::ffff:218.73.14.234] ([IPv6:::ffff:218.73.14.234]:48146
	"HELO mail.com") by imladris.surriel.com with SMTP
	id <S80469AbTCZO1l>; Wed, 26 Mar 2003 09:27:41 -0500
From:	=?ISO-8859-1?Q? "=CD=F8=D2=D7" ?= <MAILER-DAEMON@163.com>
To:	linux-mm-bugs-archive@nl.linux.org
Subject: =?ISO-8859-1?Q?=C3=C0=B9=FA=B4=F3=D5=BD=D2=C1=C0=AD=BF=CB=A3=AC=D5=BD=BF=F6=CA=B5=CA=B1=B1=A8=B5=C0?=
Mime-Version: 1.0
Content-Type: text/plain; charset="gb2312"
Date:	Wed, 26 Mar 2003 22:27:51
Message-Id: <20030326142746Z80469-32359+1442@imladris.surriel.com>
Return-Path: <MAILER-DAEMON@163.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

美国大战伊拉克，战况实时报道，精彩不容错过！

http://free.zhibo.net/12345.zhibo.net/sms/news.htm
-----------------------------------------------------------------
200M虚拟主机+50M企业邮局+顶级国际域名,只需189元/年 http://www.kldns.net
国际英文域名 79元/年  免费无限次解析 http://www.kldns.net
欢迎光临科力网络：http://www.kldns.net  http://www.cnkl.net
-----------------------------------------------------------------
    
..........::: JKLMailer PowerBy：www.VRMO.com QQ:5009353 :::.....


From MAILER-DAEMON@163.com Wed Mar 26 15:39:59 2003
Received: from [IPv6:3ffe:8260:10f:ffff::2] ([IPv6:3ffe:8260:10f:ffff::2]:65470
	"EHLO imladris.surriel.com") by humbolt.nl.linux.org with ESMTP
	id <S17592AbTCZOjq>; Wed, 26 Mar 2003 15:39:46 +0100
Received: from [IPv6:::ffff:218.73.14.234] ([IPv6:::ffff:218.73.14.234]:5394
	"HELO mail.com") by imladris.surriel.com with SMTP
	id <S80529AbTCZO0l>; Wed, 26 Mar 2003 09:26:41 -0500
From:	=?ISO-8859-1?Q? "=CD=F8=D2=D7" ?= <MAILER-DAEMON@163.com>
To:	linux-mm-bugs-archive@nl.linux.org
Subject: =?ISO-8859-1?Q?=C3=C0=B9=FA=B4=F3=D5=BD=D2=C1=C0=AD=BF=CB=A3=AC=D5=BD=BF=F6=CA=B5=CA=B1=B1=A8=B5=C0?=
Mime-Version: 1.0
Content-Type: text/plain; charset="gb2312"
Date:	Wed, 26 Mar 2003 22:26:51
Message-Id: <20030326142651Z80529-32359+1441@imladris.surriel.com>
Return-Path: <MAILER-DAEMON@163.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

美国大战伊拉克，战况实时报道，精彩不容错过！

http://free.zhibo.net/12345.zhibo.net/sms/news.htm
-----------------------------------------------------------------
200M虚拟主机+50M企业邮局+顶级国际域名,只需189元/年 http://www.kldns.net
国际英文域名 79元/年  免费无限次解析 http://www.kldns.net
欢迎光临科力网络：http://www.kldns.net  http://www.cnkl.net
-----------------------------------------------------------------
    
..........::: JKLMailer PowerBy：www.VRMO.com QQ:5009353 :::.....


From linux-mm-bugs-bounce@nl.linux.org Wed Mar 26 16:03:35 2003
Received: from localhost.nl.linux.org ([IPv6:::ffff:127.0.0.1]:31163 "EHLO
	humbolt.") by humbolt.nl.linux.org with ESMTP id <S17600AbTCZPDb>;
	Wed, 26 Mar 2003 16:03:31 +0100
Received: with LISTAR (v1.0.0; list linux-mm-bugs); Wed, 26 Mar 2003 16:03:27 +0100 (CET)
Received: from web13113.mail.yahoo.com ([IPv6:::ffff:216.136.174.181]:1672
	"HELO web13113.mail.yahoo.com") by humbolt.nl.linux.org with SMTP
	id <S17447AbTCZPDM>; Wed, 26 Mar 2003 16:03:12 +0100
Message-ID: <20030326150310.3661.qmail@web13113.mail.yahoo.com>
Received: from [213.136.120.22] by web13113.mail.yahoo.com via HTTP; Wed, 26 Mar 2003 15:03:10 GMT
Date:	Wed, 26 Mar 2003 15:03:10 +0000 (GMT)
From:	=?iso-8859-1?q?bakare=20ade?= <anabudodike_ab14ad@yahoo.co.uk>
Subject: REQUEST FOR HELP
To:	linux-mm-bugs@nl.linux.org
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
X-Spam-Status: No, hits=4.3 required=5.0 tests=US_DOLLARS,SUBJ_ALL_CAPS version=2.20
X-Spam-Level: ****
X-listar-version: Listar v1.0.0
Sender:	linux-mm-bugs-bounce@nl.linux.org
Errors-to: linux-mm-bugs-bounce@nl.linux.org
X-original-sender: anabudodike_ab14ad@yahoo.co.uk
Precedence: bulk
Reply-to: linux-mm-bugs@nl.linux.org
List-help: <mailto:listar@nl.linux.org?Subject=help>
List-unsubscribe: <mailto:linux-mm-bugs-request@nl.linux.org?Subject=unsubscribe>
List-software: Listar version 1.0.0
X-List-ID: <linux-mm-bugs.nl.linux.org>
List-subscribe:	<mailto:linux-mm-bugs-request@nl.linux.org?Subject=subscribe>
List-owner: <mailto:riel@nl.linux.org>
List-post: <mailto:linux-mm-bugs@nl.linux.org>
List-archive: <http://mail.nl.linux.org/linux-mm-bugs/>
X-list:	linux-mm-bugs
Return-Path: <linux-mm-bugs-bounce@nl.linux.org>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

Dear sir ,
     
I know this proposal letter may come to you as a
surprise considering the fact that we have not had any
formal acquaintance before .but all the same I would
want you for the sake of God to give this an immediate
attention in view of the fact that the security of our
live and possession is at stake .
 
I am Mr ADE BAKARE a 24 years old from war ravaged
SIERRA LEONE but presently domiciled in Abidjan  Ivory
coast with my sister JANET who is 18 years old .My
father Mr RICHARD BAKARE  who before his untimely
assassination by the rebels was the Director of SIERRA
LEONE Diamond corporation (SLDC) .He was killed in our
government residential house along side two of my
other brothers ,two house maids and one government
attached security guard fortunately for I, younger
sister and mother ,we were on a week end visit to our
home town As we got the news of the tragedy .We
immediately managed to ran into neighbouring Ivory
coast for refuge .But unfortunately .As
Fate would have it ,we lost our dear mother (may soul
rest in peace) as a result of what the Doctor called
cardiac arrest .
 
As we were coming into this country ,we had some
documents of a deposit of $ 11 700  000  USD (eleven
million seven hundred thousand USD ) made by my late
father in a security and trust company .According to
my father, he intended to use this fund for his
international business transaction after his tenure in
office but was unfortunately murdered .We had located
the security company where the money is deposited with
the help of an attorney and established ownership
.please right now ,with the bitter experiences we had
in our country and the war still going on especially
in diamond area which incidentally is where we hail
from .coupled with the incessant political upheavals
and hostilities in this country  Ivory coast ,we
desire seriously to leave here and live the rest of
our life into a more peaceful and politically stable
country like yours Hence this proposal and request .We
therefore wish you can help us in the following
regards :
 
1)	To provide us with a good bank account to transfer
the money into 
2)	 To help us invest the money into a lucrative
business .
3)	 To assist my sister Janet get a college admission
to further her education.

Please I know that , this letter may sound strange and
incredible to you but the CNN and the BBC African
bulletin  normally have it as their major news
features .Therefore for the sake of God and humanity
give an immediate positive consideration and reply to
me via our e-mail address. I will willingly agree to
any suitable percentage of the money you will propose
as your compensation for your assistance with regards
to the above .please in view of our sensitive refugee
status and as we are still conscious of our father 's
enemies .I would like you to give this a highly
confidential approach .

Best Regards .


ADE BAKARE.



__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
--
Linux-mm-bugs:  bugzilla list for the Linux-MM subsystem
Archive:        http://mail.nl.linux.org/linux-mm-bugs/
Web site:       http://linux-mm.org/
Development:    linux-mm@kvack.org


From linux-mm-bugs-bounce@nl.linux.org Wed Mar 26 16:10:40 2003
Received: from localhost.nl.linux.org ([IPv6:::ffff:127.0.0.1]:28092 "EHLO
	humbolt.") by humbolt.nl.linux.org with ESMTP id <S17708AbTCZPK3>;
	Wed, 26 Mar 2003 16:10:29 +0100
Received: with LISTAR (v1.0.0; list linux-mm-bugs); Wed, 26 Mar 2003 16:10:26 +0100 (CET)
Received: from web40705.mail.yahoo.com ([IPv6:::ffff:66.218.78.162]:25501 "HELO
	web40705.mail.yahoo.com") by humbolt.nl.linux.org with SMTP
	id <S17447AbTCZPJy>; Wed, 26 Mar 2003 16:09:54 +0100
Message-ID: <20030326150952.29306.qmail@web40705.mail.yahoo.com>
Received: from [213.136.120.22] by web40705.mail.yahoo.com via HTTP; Wed, 26 Mar 2003 15:09:52 GMT
Date:	Wed, 26 Mar 2003 15:09:52 +0000 (GMT)
From:	"=?iso-8859-1?q?A.G=20FRANK?=" <agdmuk@yahoo.co.uk>
Subject: REQUEST FOR INVESTMENT PARTNERSHIP
To:	linux-mm-bugs@nl.linux.org
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
X-Spam-Status: No, hits=2.6 required=5.0 tests=US_DOLLARS_2,LINES_OF_YELLING,SUBJ_ALL_CAPS version=2.20
X-Spam-Level: **
X-listar-version: Listar v1.0.0
Sender:	linux-mm-bugs-bounce@nl.linux.org
Errors-to: linux-mm-bugs-bounce@nl.linux.org
X-original-sender: agdmuk@yahoo.co.uk
Precedence: bulk
Reply-to: linux-mm-bugs@nl.linux.org
List-help: <mailto:listar@nl.linux.org?Subject=help>
List-unsubscribe: <mailto:linux-mm-bugs-request@nl.linux.org?Subject=unsubscribe>
List-software: Listar version 1.0.0
X-List-ID: <linux-mm-bugs.nl.linux.org>
List-subscribe:	<mailto:linux-mm-bugs-request@nl.linux.org?Subject=subscribe>
List-owner: <mailto:riel@nl.linux.org>
List-post: <mailto:linux-mm-bugs@nl.linux.org>
List-archive: <http://mail.nl.linux.org/linux-mm-bugs/>
X-list:	linux-mm-bugs
Return-Path: <linux-mm-bugs-bounce@nl.linux.org>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

FROM :P.K HAMSON
Dear sir ,


REQUEST FOR INVESTMENT PARTNERSHIP

Permit me to inform you of my desire of going into
business relationship with you. I know this mail may
come to you as a surprise, since we have not known or
written before. Introducing myself, I am Mr  PETER .K
HAMSON, 24 years of age the only son of the late Mr
and Mrs RICHARD HAMSON, my father was a Gold and cocoa
merchant based in  Accra, Ghana and Abidjan (Ivory
Coast), he was poisoned to death by his business
associates on one of their business trips. Before the
death of my father on 29th June 2000 in a private
hospital here in Abidjan. he secretly called me on his
bedside and told me that he has a sum of USD$12.5M
(Twelve Million Five Hundred Thousand U.S), deposited
in Bank in (Abidjan C魌e d扞voire, that he used my
name as his only son for the next of kin in depositing
the fund.

He also explained to me that it was because of this
wealth that he was poisoned by his business
associates, that I should seek for a foreign partner
in a country of my choice where I will transfer this
money and use it for investment purpose such as
expansion of his existing cocoa business and real
estate management here on how best to transfer this
money to overseas please.

I am humbly seeking your assistance in the following
ways : 
1-	To assist me in providing an account of yours where
this fund can quietly be transferred into.
2-	To serve as the guardian of this fund since I am
still in the university.
3-	To make arrangement for me to come over to your
country to further my education and to help me secure
a residential permit in your country. Moreover, I am
willing to offer you 15% of the total sum as
compensation for your effort/input after the
successful transfer of this fund into your nominated
account overseas, while 5% will be set aside to offset
any expenses we may incur. Furthermore, you can
indicate your option towards assisting me as I believe
that this transaction would be concluded within the
shortest possible time if you signify interest to
assist me.

NB : Please contact   me immediately you receive
this message through  my e_mail address if you are
intrested
God bless you
Yours sincerely           

PETER.K. HAMSON.





__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
--
Linux-mm-bugs:  bugzilla list for the Linux-MM subsystem
Archive:        http://mail.nl.linux.org/linux-mm-bugs/
Web site:       http://linux-mm.org/
Development:    linux-mm@kvack.org


From MAILER-DAEMON@163.com Sun Mar 30 17:58:10 2003
Received: from [IPv6:::ffff:218.0.154.210] ([IPv6:::ffff:218.0.154.210]:21771
	"HELO mail.com") by humbolt.nl.linux.org with SMTP
	id <S17091AbTC3P55>; Sun, 30 Mar 2003 17:57:57 +0200
From:	=?ISO-8859-1?Q?"=CD=F8=D2=D7"?= <MAILER-DAEMON@163.com>
To:	linux-mm-bugs-archive@nl.linux.org
Subject: =?ISO-8859-1?Q?=C3=C0=B9=FA=B4=F3=D5=BD=D2=C1=C0=AD=BF=CB=A3=AC=D5=BD=BF=F6=CA=B5=CA=B1=B1=A8=B5=C0?=
Mime-Version: 1.0
Content-Type: text/plain; charset="gb2312"
Date:	Sun, 30 Mar 2003 23:59:03
Message-Id: <20030330155807Z17091-11685+1694@humbolt.nl.linux.org>
Return-Path: <MAILER-DAEMON@163.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

美国大战伊拉克，战况实时报道，精彩不容错过！
http://free.zhibo.net/12345.zhibo.net/sms/news.htm
央视国际 (2003年03月30日 19:04) 
    CCTV.com消息（新闻联播）：中国政府援助约旦境内伊拉克难民的首批人道主义救援物资100顶帐篷今天从新疆乌鲁木齐启运，由于中途需要转机，预计４月２号运抵约旦首都安曼。 
　　作为伊拉克战争爆发后最早宣布提供人道主义救援物资的国家之一，这次中国政府提供的紧急人道主义救援物资是500顶帐篷。除首批的100顶外，其余400顶将分批于4月初陆续运抵安
曼。这些物资将由约旦哈希姆王国慈善组织负责接收，并由该组织分发到难民手中。 
　　有关方面负责人表示，中国政府将密切关注战争局势的发展，并根据形势需要，在力所能及的范围内继续向有关国家提供人道主义援助。 
http://free.zhibo.net/12345.zhibo.net/sms/news.htm
更多详情：http://okmm.sms.163.com
-----------------------------------------------------------------
200M虚拟主机+50M企业邮局+顶级国际域名,只需189元/年 http://www.kldns.net
国际英文域名 79元/年  免费无限次解析 http://www.kldns.net
欢迎光临科力网络：http://www.kldns.net  http://www.cnkl.net
-----------------------------------------------------------------
    
..........::: JKLMailer PowerBy：www.VRMO.com QQ:5009353 :::.....


From jzwx2003@yahoo.com.cn Mon Mar 31 06:55:09 2003
Received: from [IPv6:::ffff:61.183.176.92] ([IPv6:::ffff:61.183.176.92]:37127
	"ehlo yahoo.com.cn") by humbolt.nl.linux.org with ESMTP
	id <S16166AbTCaEyy>; Mon, 31 Mar 2003 06:54:54 +0200
From:	=?GB2312?B?vsXW3c7v18rQxc+izfg=?= <jzwx2003@yahoo.com.cn>
Subject: =?GB2312?B?bGludXgtbW0tYnVncy1hcmNoaXZlLMT6usOjobbUxPrJ+tLi09Cw79b6o6y2?=
Message-Id: <20030331045502Z16166-11686+1288@humbolt.nl.linux.org>
To:	unlisted-recipients:; (no To-header on input)
Date:	Mon, 31 Mar 2003 06:54:54 +0200
Return-Path: <jzwx2003@yahoo.com.cn>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

 =?GB2312?B?+MfSvvi21MPit9GjoQ==?=
To: linux-mm-bugs-archive@nl.linux.org
Content-Type: text/html;charset="GB2312"
Date: Mon, 31 Mar 2003 12:55:32 +0800
X-Priority: 3
X-Mailer: FoxMail 3.11 Release [cn]

<HTML><HEAD><TITLE>九州物资信息网--首页</TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<META content=从事信息服务、网上交易、网上分销、网上采购、网站建设、解决方案等，是一个专注于钢铁业的电子商务公司。 
name=DESCRIPTION>
<META content=钢铁,钢厂,生铁，炉料,铁合金,金属,冶金,废钢,信息,电子商务,ERP,仓储,配送,焦碳, name=keywords>
<SCRIPT language=javascript>
function openUser(id) {
	var Win = window.open("dispuser.asp?name="+id,"openScript");
}

function openScript(url, width, height){
	var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
}

function openDis(bid,rid,id){
	self.location="GBook_read.asp?boardid="+bid+"&RootID="+rid+"&id="+id
}

function PopWindow()
{ 
openScript('messanger.asp?action=newmsg',420,320); 
}
var nn = !!document.layers;
var ie = !!document.all;

if (nn) {
  netscape.security.PrivilegeManager.enablePrivilege("UniversalSystemClipboardAccess");
  var fr=new java.awt.Frame();
  var Zwischenablage = fr.getToolkit().getSystemClipboard();
}

function submitonce(theform){
//if IE 4+ or NS 6+
if (document.all||document.getElementById){
//screen thru every element in the form, and hunt down "submit" and "reset"
for (i=0;i<theform.length;i++){
var tempobj=theform.elements[i]
if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
//disable em
tempobj.disabled=true
}
}
}
</SCRIPT>

<SCRIPT language=JavaScript>
//***********默认设置定义.*********************
tPopWait=50;//停留tWait豪秒后显示提示。
tPopShow=5000;//显示tShow豪秒后关闭提示
showPopStep=20;
popOpacity=99;

//***************内部变量定义*****************
sPop=null;
curShow=null;
tFadeOut=null;
tFadeIn=null;
tFadeWaiting=null;

document.write("<style type='text/css'id='defaultPopStyle'>");
document.write(".cPopText {  background-color: #F8F8F5;color:#000000; border: 1px #000000 solid;font-color: font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}");
document.write("</style>");
document.write("<div id='dypopLayer' style='position:absolute;z-index:1000;' class='cPopText'></div>");


function showPopupText(){
var o=event.srcElement;
	MouseX=event.x;
	MouseY=event.y;
	if(o.alt!=null && o.alt!=""){o.dypop=o.alt;o.alt=""};
        if(o.title!=null && o.title!=""){o.dypop=o.title;o.title=""};
	if(o.dypop!=sPop) {
			sPop=o.dypop;
			clearTimeout(curShow);
			clearTimeout(tFadeOut);
			clearTimeout(tFadeIn);
			clearTimeout(tFadeWaiting);	
			if(sPop==null || sPop=="") {
				dypopLayer.innerHTML="";
				dypopLayer.style.filter="Alpha()";
				dypopLayer.filters.Alpha.opacity=0;	
				}
			else {
				if(o.dyclass!=null) popStyle=o.dyclass 
					else popStyle="cPopText";
				curShow=setTimeout("showIt()",tPopWait);
			}
			
	}
}

function showIt(){
		dypopLayer.className=popStyle;
		dypopLayer.innerHTML=sPop;
		popWidth=dypopLayer.clientWidth;
		popHeight=dypopLayer.clientHeight;
		if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
			else popLeftAdjust=0;
		if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
			else popTopAdjust=0;
		dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
		dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
		dypopLayer.style.filter="Alpha(Opacity=0)";
		fadeOut();
}

function fadeOut(){
	if(dypopLayer.filters.Alpha.opacity<popOpacity) {
		dypopLayer.filters.Alpha.opacity+=showPopStep;
		tFadeOut=setTimeout("fadeOut()",1);
		}
		else {
			dypopLayer.filters.Alpha.opacity=popOpacity;
			tFadeWaiting=setTimeout("fadeIn()",tPopShow);
			}
}

function fadeIn(){
	if(dypopLayer.filters.Alpha.opacity>0) {
		dypopLayer.filters.Alpha.opacity-=1;
		tFadeIn=setTimeout("fadeIn()",1);
		}
}
document.onmouseover=showPopupText;
</SCRIPT>

<STYLE type=text/css>A:visited {
	COLOR: #000000; TEXT-DECORATION: none
}
A:active {
	COLOR: red; TEXT-DECORATION: none
}
A:hover {
	COLOR: red; TEXT-DECORATION: underline
}
A:link {
	COLOR: #000000; TEXT-DECORATION: none
}
.navPoint {
	COLOR: white; CURSOR: hand; FONT-FAMILY: Webdings; FONT-SIZE: 9pt
}
.t {
	LINE-HEIGHT: 1.4
}
.newwhite {
	COLOR: #ffffff; FONT-SIZE: 12px; TEXT-DECORATION: none
}
.white1 {
	COLOR: #ffffff; FONT-SIZE: 12px; LINE-HEIGHT: 220%; TEXT-DECORATION: none
}
BODY {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px; SCROLLBAR-HIGHLIGHT-COLOR: #84B1D2; SCROLLBAR-SHADOW-COLOR: #84B1D2; SCROLLBAR-3DLIGHT-COLOR: #84B1D2; SCROLLBAR-TRACK-COLOR: #FFFFFF; SCROLLBAR-DARKSHADOW-COLOR: #84B1D2; scrollbar-Base-Color: #84B1D2
}
TD {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
P {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
DIV {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
BR {
	COLOR: #000000; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
FORM {
	FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
OPTION {
	FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
LI {
	COLOR: #094366; FONT-SIZE: 9pt; LINE-HEIGHT: 16px; LIST-STYLE: url(images/dot1.gif); TEXT-INDENT: 5pt
}
INPUT {
	BORDER-BOTTOM-COLOR: #cccccc; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #cccccc; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #cccccc; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cccccc; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px; HEIGHT: 15pt; PADDING-BOTTOM: 1px; PADDING-LEFT: 1px; PADDING-RIGHT: 1px; PADDING-TOP: 1px
}
TEXTAREA {
	BACKGROUND-COLOR: #efefef; BORDER-BOTTOM-COLOR: #000000; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #000000; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #000000; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #000000; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
SELECT {
	BACKGROUND-COLOR: #eeeeee; BORDER-BOTTOM-COLOR: #000000; BORDER-BOTTOM-WIDTH: 1px; BORDER-LEFT-COLOR: #000000; BORDER-LEFT-WIDTH: 1px; BORDER-RIGHT-COLOR: #000000; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #000000; BORDER-TOP-WIDTH: 1px; FONT-FAMILY: "宋体"; FONT-SIZE: 12px
}
.input1 {
	BACKGROUND-COLOR: #e7e7e7; BORDER-BOTTOM-STYLE: solid; BORDER-LEFT-STYLE: solid; BORDER-RIGHT-STYLE: solid; BORDER-TOP-STYLE: solid
}
</STYLE>
<!-- background-color: #E4E4E4;border-width: 0 ; -->
<META content="Microsoft FrontPage 4.0" name=GENERATOR>
<style fprolloverstyle>A:hover {color: red; font-weight: bold}
</style>
</HEAD>
<BODY bgColor=#ffffff leftMargin=0 topMargin=0 link="#0000FF" vlink="#990066" alink="#FF0000">
<div align="left">
<TABLE border=0 cellPadding=0 cellSpacing=0 height=68 width=768>
  <TBODY>
  <TR>
    <TD align=middle class=button rowSpan=2 vAlign=center width=163 height="68">
        <p align="center"><img border="0" src="http://www.jzwx.com/emailsend/logo4.jpg" width="150" height="100"></p>
    </TD>
    <TD align=right class=button colSpan=2 vAlign=center height="25">
      <TABLE border=0 cellPadding=0 cellSpacing=0 height=20 width="100%">
        <TBODY>
        <TR>
          <TD>
            <P align=right><a href="http://www.jzwx.com">http://www.jzwx.com&nbsp;</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;               
            &nbsp;<A href="http://www.jzwx.com/"               
            target=_parent>首页</A> | <A                            
            href="http://www.jzwx.com/Member_agree.asp" target=_parent>会员注册</A>                            
            | <A href="http://www.jzwx.com/Service.asp" target=_parent>客户服务</A>                            
            | <A href="http://www.jzwx.com/navagation.asp"                            
            target=_parent>网站导航</A> | <A href="http://www.jzwx.com/help.asp"                            
            target=_parent>帮助</A> <B>2003年2月10日</B> </P>                           
          <TD></TD></TR></TBODY></TABLE>                           
      <TABLE border=0 cellPadding=0 cellSpacing=0 width="75%">                           
        <TBODY>                           
        <TR>                           
          <TD bgColor=#999999><IMG height=1 src="space3.gif"                            
            width=1></TD></TR></TBODY></TABLE></TD></TR>                           
  <TR>                           
    <TD align=left class=button vAlign=center width=489 height="43">                           
      <TABLE bgColor=#000000 border=0 cellPadding=0 cellSpacing=1>                           
        <TBODY>                           
        <TR>                           
            <TD align=middle bgColor=#ffffff> <object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000                            
            codebase=http://download.macroindexphoto.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0                            
            height=60 width=468>            
                <param name="_cx" value="12383">  
                <param name="_cy" value="1588">  
                <param name="Movie" value="http://www.jzwx.com/indexphoto/banner2.swf">  
                <param name="Src" value="http://www.jzwx.com/indexphoto/banner2.swf">  
                <param name="WMode" value="Transparent">  
                <param name="Play" value="-1">  
                <param name="Loop" value="-1">  
                <param name="Quality" value="High">  
                <param name="SAlign" value>  
                <param name="Menu" value="-1">  
                <param name="Base" value>  
                <param name="Scale" value="ShowAll">  
                <param name="DeviceFont" value="0">  
                <param name="EmbedMovie" value="0">  
                <param name="BGColor" value>  
                <param name="SWRemote" value><embed src="http://www.jzwx.com/emailsend/A01.swf" quality="high" pluginspage="http://www.macroindexphoto.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="468" height="60" wmode="transparent">            
              </object></TD>           
          </TR></TBODY></TABLE></TD>                         
    <TD align=left class=button vAlign=center width=116 height="43">                         
      <TABLE bgColor=#000000 border=0 cellPadding=0 cellSpacing=1 width="90%">                         
        <TBODY>                         
        <TR>                         
            <TD bgColor=#ffffff> <OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000                          
            codeBase=http://download.macroindexphoto.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0                          
            height=60 width=110>           
                <param name="_cx" value="2910">                         
              <param name="_cy" value="1614">                         
              <param name="FlashVars" value="-1">                         
              <param name="Movie" value="http://www.jzwx.com/emailsend/A02.swf">                         
              <param name="Src" value="http://www.jzwx.com/emailsend/A02.swf">                         
              <param name="WMode" value="Window">                         
              <param name="Play" value="-1">                         
              <param name="Loop" value="-1">                         
              <param name="Quality" value="High">                         
              <param name="SAlign" value>                         
              <param name="Menu" value="-1">                         
              <param name="Base" value>                         
              <param name="AllowScriptAccess" value="always">                         
              <param name="Scale" value="ShowAll">                         
              <param name="DeviceFont" value="0">                         
              <param name="EmbedMovie" value="0">                         
              <param name="BGColor" value>                         
              <param name="SWRemote" value><embed src="http://www.jzwx.com/emailsend/A02.swf" quality="high" pluginspage="http://www.macroindexphoto.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="110" height="60"></embed>                          
        </OBJECT></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>                         
</div>                         
<table height="35">                         
  <TBODY>                         
<td height="31">                        
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760>                        
  <TBODY>                        
  <TR>                        
          <TD background=http://www.jzwx.com/emailsend/index2_bg2.gif><IMG height=5                         
      src="index2_bg2.gif" width=1></TD>           
        </TR></TBODY></TABLE>                        
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760>                        
  <TBODY>                        
  <TR align=left bgColor=#2e6083>                        
          <TD vAlign=top width=160><IMG src="http://www.jzwx.com/emailsend/index2_home.gif"                         
      width=160></TD>                        
    <TD bgColor=#2e6083 vAlign=bottom width=595>&nbsp;| <A class=white                            
      href="http://www.jzwx.com/SuandDe_Info.asp" target=_parent><FONT                            
      color=#ffffff>供求快讯</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/pSuandDe_Info.asp" target=_parent><FONT                            
      color=#ffffff>供求专版</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/Query_Form.asp?boardid=0" target=_parent><FONT                            
      color=#ffffff>资源查询</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/InfoCenter.asp" target=_parent><FONT                            
      color=#ffffff>资讯中心</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/DayForArea.asp" target=_parent><FONT                            
      color=#ffffff>每日行情</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/Fittings/" target=_parent><FONT                            
      color=#ffffff>机电配件区</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/gbIndex.asp" target=_parent><FONT                            
      color=#ffffff>访客留言</FONT></A>| <A class=white                            
      href="http://www.jzwx.com/Member_Center.asp" target=_parent><FONT                            
      color=#ffffff>会员中心</FONT></A></TD></TR></TBODY></TABLE>                           
<TABLE align=center border=0 cellPadding=0 cellSpacing=0 width=760 height="1">                           
  <TBODY>                           
  <TR>                           
          <TD background=http://www.jzwx.com/emailsend/index2_bg3.gif height="1"><IMG height=7                            
      src="index2_bg3.gif" width=1></TD>            
        </TR></TBODY></TABLE>                  
    
  </TBODY>                          
</table>                          
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;                  
tab-stops:list 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><font color="#FF0000" size="6" face="楷体_GB2312">免费注册高级会员,尽享无限资讯！</font></span></b></p>               
               
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;               
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">快快登录</span><span style="mso-bidi-font-size: 12.0pt; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><a href="http://www.jzwx.com"><font color="#0000FF">九州物资信息网(<span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">http://www.jzwx.com)</span></font></a></span>，  
<span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">点击“<a href="http://www.jzwx.com/Member_agree.asp"><font color="#0000FF">会员注册</font></a>”，只需几分钟，<a href="http://www.jzwx.com/Member_reg.asp"><font color="#0000FF">注册为高级会员</font></a>后，就可免费发布供求快</span></p>  
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;             
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">讯(在会员中心-供求快讯发布中进行)、免费发布供求专版（将您要发布的专版内容发电子邮件到<a href="mailto:gqzb@jzwx.com"><font color="#0000FF">gqzb@jzwx.com</font></a>）、免费搜索</span></p> 
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;            
tab-stops:list 36.0pt" align="left"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><a href="mailto:讯、免费发布供求专版（将您要发布的专版内容发电子邮件到gqzb@jzwx.com）、免费搜索资源信息、免费查阅各类资讯，尽在">资源信息、免费查阅各类资讯，尽在</a>掌握之中！（至少相当于送您5000元/年）</span></p> 
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;            
tab-stops:list 36.0pt" align="left"><b><blink><span style="mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman; mso-bidi-font-family: Times New Roman; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><font face="楷体_GB2312" size="5" color="#FF0000">机会难得，不容错过，行动要快！</font></span></blink></b></p> 
          
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/"><font color="#0000FF">网站简介：</font></a></span></b></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">       
  </span><a href="http://www.jzwx.com"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><font color="#0000FF">九州物资信息网</font></span><font color="#0000FF"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">（</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">www.jzwx.com</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">）</span></font></a><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">系钢铁专业信息网站，设有“钢材、机电配件”两个大区，每区下面设有</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 
宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">供求快讯</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">供求专版</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资讯中心</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-fam
ily: Times New Roman; mso-hansi-font-family: Times New Roman">每日行情</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">“</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资源查询</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">、“</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">WTO</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">知识讲座”、“资料中心”等栏目以及“每日热点资源”、</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">“呼叫中心”“客户服务”、“网站导航”等子栏目；同时，网站还链接了国内大型钢铁企</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">业及国内外相关钢铁信息网站。本站</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">将为没有企业网站的会员免费制作精美的宣传主页。通过本站，可以随时随地的查询大量的资讯及可供资源信息，为会员提供第</span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">一手决策</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">资料。</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>       
  </o:p> </span></p>      
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;          
tab-stops:list 36.0pt"><font color="#0000FF"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/SuandDe_Info.asp" style="color: #0000FF">供求快讯</a></span></b></font><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><font color="#0000FF"><a href="http://www.jzwx.com/SuandDe_Info.asp">：</a></font>了解最新的供求信息，把握瞬息万变的商机；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>          
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/pSuandDe_Info.asp"><font color="#0000FF">供求专版：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">按会员查询供求信息，为您与客户提供面对面的交流；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>          
</o:p>          
</span></p>          
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/Query_Form.asp?boardid=0"><font color="#0000FF">资源查询：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">搜索到本网站所有的资源信息，可以按品名、规格、材质、生产厂家、交货地等多个关键字段进行搜索；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/InfoCenter.asp"><font color="#0000FF">资讯中心：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">及时了解市场第一手资讯，为经营提供决策信息。可按行业动态、财经要闻、市场分析、钢厂价格、</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">WTO</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">与进出口等</span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">栏目分别查阅，其中钢厂价格下面又可按</span><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">钢厂查询；万千资讯，应有尽有！</span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/DayForArea.asp"><font color="#0000FF">每日行情：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">及时了解全国数十个大中城市的各品种即时行情及价格走势；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>      
  </o:p> </span></p>     
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman"><a href="http://www.jzwx.com/Member_Center.asp"><font color="#0000FF">会员中心：</font></a></span></b><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">会员可以发布、修改、更新、删除会员自己的可供资源、发布供求快讯、维护注册档案信息；</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">      
  &nbsp; </span></p>         
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt">更多栏目</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">，请登录<font color="#0000FF"><a href="http://www.jzwx.com" style="color: #0000FF">Http://www.jzwx.com</a></font></span></p>        
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><a href="http://www.jzwx.com/">“</a></span><a href="http://www.jzwx.com/"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">九州物资信息网</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt">”</span></a><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">网站信息专业性强、更新速度快、贴近市场，在此热忱欢迎广大资源厂家、代理商、客户加入我们，共同发</span>         
</p>             
<p class="MsoNormal" style="text-indent: -36.0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt; margin-left: 36.0pt"><span style="mso-bidi-font-size: 12.0pt; font-family: 宋体; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">展！同时还真诚地希望多多给我们提出改进、提高的建设性意见。</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt"><o:p>         
  &nbsp;</span><span lang="EN-US" style="mso-bidi-font-size: 12.0pt; font-family: Times New Roman; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><br>         
  </span>      
</p>          
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;         
tab-stops:list 36.0pt">本邮件是善意邮件,如果您觉得有用,请把它保存下来或推荐给需要它的朋友;如果您觉得它没用,请随手删除;如果您以后不想再收</p>         
<p class="MsoNormal" style="margin-left:36.0pt;text-indent:-36.0pt;mso-list:l0 level1 lfo1;         
tab-stops:list 36.0pt">到类似邮件,请发信到<a href="mailto:remove@jzwx.com"><font color="#0000FF">remove@jzwx.com</font></a>.谢谢!</p>         
</BODY>

From linux-mm-bugs-bounce@nl.linux.org Mon Mar 31 09:36:51 2003
Received: from localhost.nl.linux.org ([IPv6:::ffff:127.0.0.1]:22415 "EHLO
	humbolt.") by humbolt.nl.linux.org with ESMTP id <S16398AbTCaHgh>;
	Mon, 31 Mar 2003 09:36:37 +0200
Received: with LISTAR (v1.0.0; list linux-mm-bugs); Mon, 31 Mar 2003 09:36:28 +0200 (CEST)
Received: from [IPv6:::ffff:217.10.169.167] ([IPv6:::ffff:217.10.169.167]:31499
	"HELO mxcson1115.com") by humbolt.nl.linux.org with SMTP
	id <S16385AbTCaHc7> convert rfc822-to-8bit; Mon, 31 Mar 2003 09:32:59 +0200
From:	"Ann" <ad2003@consultant.com>
To:	cluster@nl.linux.org
Date:	Mon, 31 Mar 2003 15:29:25 +0800
Subject: guaranteed proposal
X-Mailer: Microsoft Outlook Express 5.00.2919.6900 DM
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 8BIT
Message-Id: <20030331073304Z16385-11686+1310@humbolt.nl.linux.org>
X-Spam-Status: No, hits=3.4 required=5.0 tests=FROM_ENDS_IN_NUMS,US_DOLLARS version=2.20
X-Spam-Level: ***
X-listar-version: Listar v1.0.0
Sender:	linux-mm-bugs-bounce@nl.linux.org
Errors-to: linux-mm-bugs-bounce@nl.linux.org
X-original-sender: ad2003@consultant.com
Precedence: bulk
Reply-to: linux-mm-bugs@nl.linux.org
List-help: <mailto:listar@nl.linux.org?Subject=help>
List-unsubscribe: <mailto:linux-mm-bugs-request@nl.linux.org?Subject=unsubscribe>
List-software: Listar version 1.0.0
X-List-ID: <linux-mm-bugs.nl.linux.org>
List-subscribe:	<mailto:linux-mm-bugs-request@nl.linux.org?Subject=subscribe>
List-owner: <mailto:riel@nl.linux.org>
List-post: <mailto:linux-mm-bugs@nl.linux.org>
List-archive: <http://mail.nl.linux.org/linux-mm-bugs/>
X-list:	linux-mm-bugs
Return-Path: <linux-mm-bugs-bounce@nl.linux.org>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org


Dear,

This is a proposal in context but actually an appeal soliciting for 
your unreserved assistance in consummating an urgent transaction requiring 
maximum confidence. Though this approach appears desperate, I can 
assure you that whatever questions you would need to ask or any other thing 
you will need to know regarding this proposal will be adequately 
answered to give you a clearer understanding of it, so as to arrive at a successful conclusion.

I am an external auditor, In carrying out my professional etiquette report, we discovered an abandoned sum of Ten Million
United States Dollars ($10mUSD) in the account belonging to one of their late foreign customer who died along with his entire 
family in September 2nd 1998 in a plane crash.

On further investigation, I found out that he died without making a WILL, and all attempts 
to trace his next of kin was fruitless. I therefore made further 
investigation and discovered that the customer did not declare any 
next of kin or relations in all his official documents, including his Bank Deposit paperwork 
in our Bank. I have carefully moved out these funds (US$10million) from our
 bank as sundry funds to an offshore Deposit Company in the European Union.

>From past experiences, I know that no one will ever come forward to 
claim the deceased funds. According to our country law, at the expiration of 6 
(six) years, the funds will be Unclaimable and revert to the ownership 
of the Government if nobody applies to claim the fund. In order 
to avert this negative development, I in conjunction with a colleague 
(the Chief Operating Officer in the bank) now seek your permission to 
allow my attorney do a CHANGE OF OWNERSHIP/REASSIGNMENT OF CREDIT of 
stated funds from the "deceased" to your name, so that the funds 
(US$10million) would be released to you as the new owner (on behalf of me and my colleague). We are writing you 
because, as public servants, we cannot operate a foreign account or have an account that is up to that amount. 
Consequently, I will present you as the owner of the funds in the 
Deposit Company so you can be able to claim them. This is simple. I 
will like you to provide immediately;

1. Full names
2. Contact address
3. Telephone and fax numbers

Once I receive these information, I will prepare the necessary 
documents which will put you in place as the new owner of the funds. The money 
will then be released to your custody by the Deposit Company, for us to 
share in the ratio of 70% for us and 30% for you. There is no risk at 
all as all the paperwork for this transaction will be done by the 
solicitor and this will guarantees the successful execution of this 
transaction. If you are interested, please reply immediately via my email 
address. Upon your response, I shall then provide you with more details and 
my confidential phone number for further explanation that will help you 
understand the transaction.

No doubt this proposal will make you apprehensive, please we imploy you 
to observe utmost confidentiality and rest assured that this 
transaction would be most profitable for both of us because we shall 
require your 
assistance to invest our share in your country (buying of properties 
like houses, hotels etc). This is why your urgent action and response is 
of priority to enable us conclude this transaction in a timely and 
professional manner.

Awaiting your urgent reply via my email.

Thanks and regards.

Rosemary Ann


--
Linux-mm-bugs:  bugzilla list for the Linux-MM subsystem
Archive:        http://mail.nl.linux.org/linux-mm-bugs/
Web site:       http://linux-mm.org/
Development:    linux-mm@kvack.org


From admail@ADmail.com Mon Mar 31 17:52:51 2003
Received: from [IPv6:::ffff:218.73.36.103] ([IPv6:::ffff:218.73.36.103]:1299
	"HELO mail.com") by humbolt.nl.linux.org with SMTP
	id <S16045AbTCaPwi>; Mon, 31 Mar 2003 17:52:38 +0200
From:	=?ISO-8859-1?Q?"=D0=C2=CA=FD=BE=DD"?= <admail@ADmail.com>
To:	linux-mm-bugs-archive@nl.linux.org
Subject: =?ISO-8859-1?Q?=B9=A9=C7=F3=D0=C5=CF=A2?=
Mime-Version: 1.0
Content-Type: text/html; charset="gb2312"
Date:	Mon, 31 Mar 2003 23:53:53
Message-Id: <20030331155241Z16045-11684+3760@humbolt.nl.linux.org>
Return-Path: <admail@ADmail.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

<a href=http://www.new110.com/?id=54e0 target=_blank><img src=http://www.new110.com/user/pic/sw_banner_2.gif border=0></a>
(如果本信给你带来不便请原谅，同时请立即删除）

<p align="center"><span style="background-color: #FFFFFF"><font color="#FF0000" size="2">
-----------------------------------------------------------------</br>
<a href=http://www.kldns.net>200M虚拟主机+50M企业邮局+顶级国际域名  只需189元/年</a></br>
<a href=http://www.cnkl.net>国际英文域名 79元/年  免费无限次解析</a></br>
欢迎光临科力网络：<a href=http://www.kldns.net>http://www.kldns.net</a>  <a href=http://www.cnkl.net>http://www.cnkl.net</a></br>
-----------------------------------------------------------------</br></br>
:::::: JKLMailer PowerBy：<a href="http://www.vrmo.com" target=_blank>www.VRMO.com</a> QQ:5009353 ::::::</br>
</font></span></p>


From admail@ADmail.com Mon Mar 31 17:53:22 2003
Received: from [IPv6:::ffff:218.73.36.103] ([IPv6:::ffff:218.73.36.103]:13572
	"HELO mail.com") by humbolt.nl.linux.org with SMTP
	id <S16045AbTCaPxK>; Mon, 31 Mar 2003 17:53:10 +0200
From:	=?ISO-8859-1?Q?"=D0=C2=CA=FD=BE=DD"?= <admail@ADmail.com>
To:	linux-mm-bugs-archive@nl.linux.org
Subject: =?ISO-8859-1?Q?=B9=A9=C7=F3=D0=C5=CF=A2?=
Mime-Version: 1.0
Content-Type: text/html; charset="gb2312"
Date:	Mon, 31 Mar 2003 23:54:26
Message-Id: <20030331155314Z16045-11684+3761@humbolt.nl.linux.org>
Return-Path: <admail@ADmail.com>
X-Envelope-To: <"| /bin/marchive -a -m -f /home/majordomo/public_html/linux-mm-bugs/folders/linux-mm-bugs"> (uid 0)
X-Orcpt: rfc822;linux-mm-bugs-archive@nl.linux.org
Original-Recipient: rfc822;linux-mm-bugs-archive@nl.linux.org

<a href=http://www.new110.com/?id=54e0 target=_blank><img src=http://www.new110.com/user/pic/sw_banner_2.gif border=0></a>
(如果本信给你带来不便请原谅，同时请立即删除）

<p align="center"><span style="background-color: #FFFFFF"><font color="#FF0000" size="2">
-----------------------------------------------------------------</br>
<a href=http://www.kldns.net>200M虚拟主机+50M企业邮局+顶级国际域名  只需189元/年</a></br>
<a href=http://www.cnkl.net>国际英文域名 79元/年  免费无限次解析</a></br>
欢迎光临科力网络：<a href=http://www.kldns.net>http://www.kldns.net</a>  <a href=http://www.cnkl.net>http://www.cnkl.net</a></br>
-----------------------------------------------------------------</br></br>
:::::: JKLMailer PowerBy：<a href="http://www.vrmo.com" target=_blank>www.VRMO.com</a> QQ:5009353 ::::::</br>
</font></span></p>


