[yunqa.de] DITidy to process www.163.com

  • From: Bear Xu <bear.xy@xxxxxxxxx>
  • To: yunqa@xxxxxxxxxxxxx
  • Date: Wed, 12 Aug 2009 13:31:37 +0800

Hi , I use DITidy to process the sourcecode of www.163.com
I found that the output will contain many <\/DIV> <\/A> etc.
If i remove some html code, the output of tidy will be empty.

How to fix this?

Thank you.
Bear
===========


Source code:

{ Cleans up some HTML and return results. }
function TidyHtml(const Html: UnicodeString; OutputType:TidyOptionID;
BodyOnly:Boolean=False; HideComments:Boolean=False): UnicodeString;
const
  UnicodeStringEncoding: PAnsiChar = 'utf16le';
var
  InBuf, OutBuf: TidyBuffer;
  TidyHandle: TidyDoc;
begin
   TidyHandle := tidyCreate;
   //Hide Tidy Mark in Heard
   tidyOptSetBool(TidyHandle, TidyMark, 0);
   if BodyOnly then
   begin
     tidyOptSetBool(TidyHandle, TidyBodyOnly, 1);
   end;

  if OutputType in [ TidyXmlOut, TidyXhtmlOut,TidyHtmlOut ] then
  begin
    tidyOptSetBool(TidyHandle, OutputType, 1);
  end;
  //hide-comments
  if HideComments then
  begin
    tidyOptSetBool(TidyHandle, TidyHideComments, 1);
  end;
  { Prepare the input buffer. }
  FillChar(InBuf, SizeOf(InBuf), 0);
  InBuf.bp := Pointer(Html);
  InBuf.Size := Length(Html) * SizeOf(Html[1]);
  { Set the input encoding to match UnicodeString / WideString. }
  tidySetCharEncoding(TidyHandle, UnicodeStringEncoding);
  { Parse the HTML. }
  tidyParseBuffer(TidyHandle, @InBuf);
  { Clean up HTML. }
  tidyCleanAndRepair(TidyHandle);
  { Prepare the output buffer. }
  tidyBufInitUnicodeString(@OutBuf);
  { Set the output encoding to match UnicodeString / WideString. }
  tidySetOutCharEncoding(TidyHandle, UnicodeStringEncoding);
  { Do not write BOM. }
  tidyOptSetBool(TidyHandle, TidyOutputBOM, 0);
  { Write cleaned-up HTML. }
  tidySaveBuffer(TidyHandle, @OutBuf);
  tidyRelease(TidyHandle);
  { Shorten output string to actual length ... }
  SetLength(UnicodeString(Pointer(OutBuf.bp)), OutBuf.Size div 2);
  { ... and copy to result. }
  Result := UnicodeString(Pointer(OutBuf.bp));
  tidyBufFree(@OutBuf);
end;

Html code:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";  xml:lang="zh-CN" lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>网易</title>
<base target="_blank" />
<meta name="Keywords" content="网易,新闻,体育,娱乐,女性,旅游,文化,论坛,短信,数码,汽车,手机,财经,科技" />
<meta name="Description"
content="网易,新闻,体育,娱乐,女性,旅游,文化,论坛,短信,数码,汽车,手机,财经,科技,专业报道门户网站" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<style type="text/css">
/* CSS Document 2008.7 */
body { text-align: center; font-family:"宋体", arial;margin:0; padding:0;
background: #FFF; font-size:12px; color:#000;}
div,form,img,ul,ol,li,dl,dt,dd {margin: 0; padding: 0; border: 0; }
li{list-style-type:none;}
img{vertical-align:top;}
strong{font-weight:normal;}
em {font-style:normal;}
h1,h2,h3,h4,h5,h6 { margin:0; padding:0;font-size:12px; font-weight:normal;}
/* Link */
a:link {color: #1f3a87; text-decoration:none;}
a:visited {color: #83006f;text-decoration:none;}
a:hover {color: #bc2931; text-decoration:underline;}
a:active {color: #bc2931;}
/* Color */
.cRed,a.cRed:link,a.cRed:visited{ color:#f00; }
.cBlue,a.cBlue:link,a.cBlue:visited,a.cBlue:active{color:#1f3a87;}
.cDRed,a.cDRed:link,a.cDRed:visited{ color:#bc2931;}
.cGray,a.cGray:link,a.cGray:visited{ color: #4F544D;}
.cDGray,a.cDGray:link,a.cDGray:visited{ color: #666;}
.cWhite,a.cWhite:link,a.cWhite:visited{ color:#fff;}
.cBlack,a.cBlack:link,a.cBlack:visited{color:#000;}
a.cBlack:hover{color:#bc2931;}
.cYellow,a.cYellow:link,a.cYellow:visited{color:#ff0;}
.cGreen,a.cGreen:link,a.cGreen:visited{color:#008000;}
/* Font  */
.fB {font-weight: bold;}
.f12px{ font-size:12px;}
.f14px{ font-size:14px;}
/* icon */
.I_V_ {background:url(http://img1.cache.netease.com/cnews/img09/icon.gif)
left center no-repeat; padding-left:16px;}
/* Other */
.left{ float: left;}
.right{ float: right;}
.clear{ clear: both; font-size:1px; width:1px; height:0; visibility: hidden;
}
.clearfix:after{content:"."; display:block; height: 0; clear: both;
visibility: hidden;} /* only FF */
.hidden {display: none;}
.unLine ,.unLine a{text-decoration: none;}
.noBorder{border:none; }
.blank3{ height:3px; clear:both;display:block;
font-size:1px;overflow:hidden;}
.blank9{ height:9px; font-size:1px;display:block;
clear:both;overflow:hidden;}
.blank6{height:6px; font-size:1px;
display:block;clear:both;overflow:hidden;}
.blankW6{ height:6px; display:block;background:#fff;
clear:both;overflow:hidden;}
.blankW9{ height:9px; display:block;background:#fff;
clear:both;overflow:hidden;}
.blank12{ height:12px; font-size:1px;clear:both;overflow:hidden;}
.blank18{ height:18px; font-size:1px;clear:both;overflow:hidden;}
/* Structure */
.area{margin:0 auto; width:960px; clear:both;}
.area .col1{float:left; width:170px;}
.area .col2{float:right; width:775px;}
.area .col2 .col2A{float:left; width:460px;}
.area .col2 .col2B{float:right; width:300px;}
.areaBg1{ background:url(http://img1.cache.netease.com/cnews/netease/bg.gif)
0 0 repeat-y;}
.areaBg2{ background:url(http://img1.cache.netease.com/cnews/netease/bg.gif)
-960px 0 repeat-y;}
.areaBg3{ background:url(http://img1.cache.netease.com/cnews/netease/bg.gif)
-1920px 0 repeat-y;}
.areaBg4{ background:url(http://img1.cache.netease.com/cnews/netease/bg.gif)
-2880px 0 repeat-y;}
.areaBg5{ background:url(http://img1.cache.netease.com/cnews/netease/bg.gif)
-3840px 0 repeat-y;}
.areaBg7{ background:url(http://img1.cache.netease.com/cnews/netease/bg.gif)
-4800px 0 repeat-y;}
.areaBg2_m{ background:url(
http://img1.cache.netease.com/cnews/netease/bg.gif) -3065px 0 repeat-y;}
.line_bg1{margin:0 auto; width:960px;display:block; clear:both; height:1px;
font-size:1px; background:url(
http://img1.cache.netease.com/cnews/netease/line_bg.gif) no-repeat;} /* left
mid right */
.line_bg2{margin:0 auto; width:960px;display:block; clear:both; height:1px;
font-size:1px; background:url(
http://img1.cache.netease.com/cnews/netease/line_bg.gif) 0 -3px no-repeat;}
/* only left  right */
.line_bg3{margin:0 auto; width:960px;display:block; clear:both; height:1px;
font-size:1px; background:url(
http://img1.cache.netease.com/cnews/netease/line_bg.gif) 0 -6px no-repeat;}
/* only mid */
.line_bg4{margin:0 auto; width:960px;display:block; clear:both; height:1px;
font-size:1px; background:url(
http://img1.cache.netease.com/cnews/netease/line_bg.gif) 0 -9px no-repeat;}
/* only left mid */
.line_bg5{margin:0 auto; width:960px;display:block; clear:both; height:1px;
font-size:1px; background:url(
http://img1.cache.netease.com/cnews/netease/line_bg.gif) 0 -12px no-repeat;}
/* only mid rihgt */
/* PassPort */
.passport{ margin:0 auto; width:960px; height:35px;clear:both; }
.passport .s1{float:left; padding:11px 0 0 5px;}
.passport .s2{float:left; padding:7px 0 0 5px;}
.passport .s2 input{border:1px solid #000; width:50px; font-size:12px;}
.passport .s2 select{font-size:12px;width:88px;}
.passport .s3{float:left; padding:7px 0 0 2px;}
.passport .s3 input{height:20px; width:48px; background:url(
http://img1.cache.netease.com/cnews/netease/input_bg.gif) 0 0 no-repeat;
border:0; padding:2px 0 0; font-size:12px;}
.passport .s4{float:right; padding:11px 3px 0 0;}
.passport .s4 .S_home {background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 3px -391px no-repeat;
padding:2px 0 0 20px;}
/* Global Nav */
.globalMenu{margin:0 auto; width:958px; height:45px; background:#fff;
border:1px solid #CBCBCB;}
.globalMenu .title{float:left; width:140px; padding:6px 0 0;}
.globalMenu .content{ float:left; width:816px; margin:5px 0 0;}
.globalMenu .content .menu{ float:left;overflow:hidden; height:36px;}
.globalMenu .content .menu li{clear:both; text-align:left; padding:2px 0 0
13px;}
.globalMenu .content .s1{width:150px;}
.globalMenu .content .s2{ width:120px;}
.globalMenu .content .stroke{border-right:1px solid #ccc;}
.globalMenu .content .lineH{line-height:22px;}
.globalMenu .content .tip{font-weight:bold;}
.globalMenu a:visited{color:#1f3a87;}
.globalMenu a:hover{color:#bc2931;}
/* Left */
.l_title{ height:26px; clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 0 no-repeat;}
.l_title h3{ padding:8px 0 0 9px; text-align:left;
float:left;color:#1f3a87;}
.l_title span{float:right; padding:8px 8px 0 8px; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 0 -103px no-repeat;}
.l_title_bg{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -704px
no-repeat;}
.l_title_nobg {background:#fff; height:20px; clear:both; margin:0 1px;
border-bottom:1px solid #ccc; border-top:1px solid #ccc; overflow:hidden;}
.l_title_nobg h3{ padding:4px 0 0 32px; text-align:left;
float:left;color:#1f3a87;}
.l_title_nobg span{float:right; padding:6px 8px 0 8px; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 0 -103px no-repeat;}
/* 08911 */
.productMain {margin:0;}
.productMain table {margin:0; line-height:21px; text-align:left;}
.productMain table tr td {border-bottom:1px solid #ccc; text-indent:9px;
font-size:12px;}
.productMain table tr td img {vertical-align:baseline; margin-top:2px;}
.productMain table .endTd td {border-bottom:none;}
.p_com {background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 6px -54px
no-repeat;}
.p_ent {background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 6px -96px
no-repeat;}
.p_ser {background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 6px -139px
no-repeat;}
.p_rec {background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 6px -177px
no-repeat;}
.l_menu_Two_Tab{ height:26px; clear:both;overflow:hidden;} /* Two Tab */
.l_menu_Two_Tab ul{}
.l_menu_Two_Tab li{float:left; width:85px; height:26px; cursor:pointer;
line-height:28px; color:#1f3a87;}
.l_menu_Two_Tab .active{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -544px
no-repeat;}
.l_menu_Two_Tab .normal{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -584px
no-repeat;}
.l_list{clear:both;padding:9px 0 0;}
.l_list ul{}
.l_list li{ text-align:left; clear:both; line-height:20px; padding:0 0 0
20px; background:url(http://img1.cache.netease.com/cnews/netease/bg1.gif)
12px -37px no-repeat;}
.l_text{clear:both;  text-align:left; line-height:21px; overflow:hidden;
zoom:1;}
.l_text ul{float:left; width:85px; padding:9px 0 6px;}
.l_text li{ padding:0 0 0 8px; clear:both;}
.l_data{ clear:both; padding:9px 9px 0 12px; overflow:hidden;}
.l_data td{line-height:20px; padding:2px 0 0;}
.l_data .tLeft{text-align:left;}
.l_data .bg{background:#fff;}
.l_data .more{clear:both; padding:3px 0 0;}
.l_data .more span{float:right; padding:4px 5px 0 10px; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 3px -106px no-repeat;}
.l_picText{clear:both; overflow:auto;}
.l_picText li{clear:both; padding:9px 0 0;}
.l_picText img{ border:1px solid #ccc;}
.l_picText span{margin:0 auto; width:147px; clear:both; padding:5px 0 0;
text-align:left; display:block;}
.l_bg1{ background:url(http://img1.cache.netease.com/cnews/netease/bg_2.gif
);}
.l_TopLine{border-top:1px solid #ccc;}
/* Mid */
.menu_Three_Tab{ height:26px; clear:both;overflow:hidden;} /* Three Tab */
.menu_Three_Tab ul{}
.menu_Three_Tab li{float:left; height:26px; cursor:pointer;
line-height:28px; color:#1f3a87;}
.menu_Three_Tab .active{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -380px
no-repeat; width:154px;}
.menu_Three_Tab .normal{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -423px
no-repeat;width:153px;}
.menu_Four_Tab{ height:26px; clear:both;overflow:hidden;} /* Four Tab */
.menu_Four_Tab ul{}
.menu_Four_Tab li{float:left; width:115px; height:26px; cursor:pointer;
line-height:28px; color:#1f3a87;}
.menu_Four_Tab .active{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -334px
no-repeat;}
.menu_Four_Tab .normal{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -295px
no-repeat;}
.menu_Three_Tab a:visited,.menu_Four_Tab a:visited{color:#1f3a87;}
.menu_Three_Tab a:hover,.menu_Four_Tab a:hover{color:#bc2931;}
.midContent{margin:0 auto; width:442px; padding:12px 0 0; clear:both;}
.midContent .colLeft{float:left; width:162px;}
.midContent .colRight{float:left; width:280px;}
.midContent .pic{ clear:both;text-align:left;}
.midContent .pic img{border:1px solid #ccc;}
.midContent .pic .tip{ line-height:25px; clear:both;}
.midContent .listText{  clear:both; text-align:left; border:1px solid #ccc;
background:#F2F6FB; line-height:20px; padding:6px 5px 3px; color:#666;}
.midContent .picText{ clear:both; }
.midContent .picText .s1{ padding:8px 0 5px; clear:both;}
.midContent .picText .s2{ clear:both;}
.midContent .picText .s2 .input{ border:1px solid #BACEEB; height:15px;
font-size:12px; width:70px;}
.midContent .picText .s2 .bu{width:59px; height:20px; padding:2px 0 0;
border:0; font-size:12px; background:url(
http://img1.cache.netease.com/cnews/netease/input_bg.gif) 0 -27px
no-repeat;}
.midContent .colRight h2{font-family: "黑体" ,Arial
Black,sans-serif;font-size:18px;padding:8px 0 0 13px;clear:both;
text-align:left;}
.midContent .list{clear:both; margin:0 6px 0 10px;}
.midContent .list ul{padding:6px 0 0;}
.midContent .list li{text-align:left; line-height:20px; padding:0 0 0 11px;
clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 3px 6px no-repeat;}
.midContent .list .line{ border-top:1px dashed #ccc; margin:4px 0 0;}
.midContent .picList{clear:both; margin:0 auto; width:441px;}
.midContent .picList ul{}
.midContent .picList li{float:left; width:147px;}
.midContent .picList img{border:1px solid #ccc;}
.midContent .picList h6{ margin:0 auto; width:122px; clear:both; padding:6px
0 0; text-align:left;}
.midContent .listCol{clear:both;  border-top:1px dashed #ccc;} /* view */
.midContent .listCol .col_C{float:left; width:208px;}
.midContent .listCol .title_C{height:26px; clear:both;color:#1f3a87;}
.midContent .listCol .title_C h3{float:left; padding:9px 0 0 2px;}
.midContent .listCol .title_C span{float:right; padding:9px 12px 0 10px;
background:url(http://img1.cache.netease.com/cnews/netease/bg1.gif) 3px
-102px no-repeat;}
.midContent .listCol .list_C{clear:both;}
.midContent .listCol .list_C ul{padding:3px 0 0;}
.midContent .listCol .list_C li{text-align:left; line-height:20px; padding:0
0 0 13px; clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 3px 6px no-repeat;}
.midContent .listCol .title_C a{color:#1f3a87;}
.midContent .listCol .title_C a:visited{color:#1f3a87;}
.midContent .listCol .title_C a:hover{color:#bc2931;}
.midContent .more{height:18px; clear:both; padding:5px 9px 0 0;}
.midContent .more span{float:right; padding:4px 5px 0 10px; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 3px -106px no-repeat;}
.midContent .more a{color:#1f3a87;}
.midContent .more a:visited{color:#1f3a87;}
.midContent .more a:hover{color:#bc2931;}
.midContent .more a.cDRed {color:#bc2931;}
.midContent a{color:#000;}
.midContent a:hover{color:#bc2931;}
.mid_h1{height:275px; overflow:hidden;} /* deviation 10px */
/* Right */
.r_title{height:24px; margin:0 1px; clear:both; background:#fff;
border-bottom:1px solid #ccc;}
.r_title h3{float:left; padding:7px 0 0 8px; text-align:left;}
.r_title span{float:right; padding:7px 8px 0 0;}
.r_list1{clear:both; padding:8px 0 0;}
.r_list1 li{clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
text-align:left; padding:0 0 0 20px; line-height:20px;}
.rightContent{padding:4px 0 0;  clear:both;}
.rightContent h2{font-family: "黑体" ,Arial
Black,sans-serif;font-size:18px;padding:2px 0 0 13px;clear:both;
text-align:center;}
.rightContent h4.f14bold {font-size:18px; color:#000; text-align:left;
text-indent:12px;}
.rightContent h4.f14bold a {color:#000;}
.rightContent h4.f14bold a:hover {color:#bc2931;}
.rightContent .r_text{clear:both;text-align:left; overflow:auto; padding:3px
0 0 12px;color:#000; }
.rightContent .r_text h2{font-family: "黑体" ,Arial
Black,sans-serif;font-size:18px;padding:3px 0 0 ;clear:both; }
.rightContent .r_text p{ clear:both; line-height:20px; padding:0 8px 0 1px;
margin:0; }
.rightContent .r_text .s{ padding:6px 0 0; clear:both;}
.rightContent .r_text select{font-size:12px;}
.rightContent .r_text .input{width:59px; height:20px; padding:2px 0 0;
border:0; font-size:12px; background:url(
http://img1.cache.netease.com/cnews/netease/input_bg.gif) 0 -27px
no-repeat;}
.rightContent .text{clear:both; line-height:20px; padding:6px 8px 0 12px;
text-align:left;}
.rightContent .key{clear:both; line-height:21px; padding:2px 0;
border-top:1px solid #ccc;}
.rightContent .list{float:left; width:150px; display:inline;}
.rightContent .list ul{ }
.rightContent .list li{ clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
text-align:left; padding:0 0 0 20px; line-height:20px;}
.rightContent .listqp1{float:left; width:120px; display:inline;}
.rightContent .listqp1 ul{ }
.rightContent .listqp1 li{ clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
text-align:left; padding:0 0 0 20px; line-height:20px;}
.rightContent .listqp2{float:left; width:180px; display:inline;}
.rightContent .listqp2 ul{ }
.rightContent .listqp2 li{ clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
text-align:left; padding:0 0 0 20px; line-height:20px;}
.rightContent .list1{ clear:both;}
.rightContent .list1 ul{padding:5px 0 0; }
.rightContent .list1 li{ clear:both; text-align:left; }
.rightContent .list1 li h6{ float:left; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
text-align:left; padding:0 0 0 20px; line-height:20px;}
.rightContent .list1 li span{float:right; padding:3px 8px 0 0;}
.rightContent .topList{ clear:both; padding:3px 0 0 5px; overflow:auto;}
.rightContent .topList ol{ padding:2px 0 0;float:left; width:100%;}
.rightContent .topList li{clear:both; padding:2px 5px 1px 6px;
color:#1f3a87;list-style-position:inside !important;  line-height:20px;
list-style-type:decimal; text-align:left;}
.rightContent .listzfb{float:left; width:298px; display:inline;}
.rightContent .listzfb ul{ }
.rightContent .listzfb li{ clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
text-align:left; padding:0 0 0 20px; line-height:20px;}
.rightContent .list2{ clear:both; padding:1px 0 0;}
.rightContent .list2 li{ clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
text-align:left; padding:0 0 0 20px; line-height:20px;}
.rightContent .list3{ clear:both; padding:5px 0 0;}
.rightContent .list3 ul{ }
.rightContent .list3 li{ clear:both; text-align:left; padding:0 0 0 12px;
line-height:20px;}
.rightContent .picItem{clear:both;}
.rightContent .picItem ul{float:left; width:149px;}
.rightContent .picItem li{ clear:both; overflow:auto; line-height:20px;
text-align:left; padding:9px 0 0 12px;}
.rightContent .picItem .icon{ padding:0 0 0 18px;  background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 0 -424px no-repeat;}
.rightContent .picItem img{ float:left; margin:0 8px 0 0; border:1px solid
#ccc; padding:1px; background:#fff;}
.rightContent .picInfo{clear:both; text-align:left; line-height:20px;
padding:9px 9px 0 12px; overflow:auto;}
.rightContent .picInfo img{ float:left; margin:0 8px 0 0; border:1px solid
#ccc; padding:1px; background:#fff;}
.rightContent .blog{ clear:both;}
.rightContent .blog .pic{ margin:0 auto; width:290px; height:93px; }
.rightContent .blog .pic h3{float:left; padding:6px 0 0 6px; color:#bc2931;}
.rightContent .blog .pic .more{float:right; padding:6px 6px 0 0;}
.rightContent .blog .pic ul{clear:both; margin:0 auto; width:280px;
padding:6px 0 0;}
.rightContent .blog .pic li{ float:left; width:70px;}
.rightContent .blog .pic img{border:1px solid #ccc;}
.rightContent .blog .iconTip{clear:both; padding:0 0 0 5px; margin:6px 0
2px;overflow:hidden;}
.rightContent .blog .iconTip ul{float:left; width:245px;} /* 49*5=245 */
.rightContent .blog .iconTip .more{float:left; width:45px; padding:15px 0
0;}
.rightContent .blog .iconTip li{float:left; width:49px;
height:51px;overflow:hidden;}
.rightContent .blog .iconTip li a{display:block;width:49px; height:51px;
float:left; line-height:75px; }
/* blog background */
.rightContent .blog .iconTip .bg1{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 3px no-repeat;}
.rightContent .blog .iconTip a.bg1:hover{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -62px no-repeat;}
.rightContent .blog .iconTip .bg2{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -129px
no-repeat;}
.rightContent .blog .iconTip a.bg2:hover{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -186px
no-repeat;}
.rightContent .blog .iconTip .bg3{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -253px
no-repeat;}
.rightContent .blog .iconTip a.bg3:hover{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -310px
no-repeat;}
.rightContent .blog .iconTip .bg4{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -378px
no-repeat;}
.rightContent .blog .iconTip a.bg4:hover{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -431px
no-repeat;}
.rightContent .blog .iconTip .bg5{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -495px
no-repeat;}
.rightContent .blog .iconTip a.bg5:hover{background:url(
http://img1.cache.netease.com/cnews/netease/blog_bg.gif) 0 -555px
no-repeat;}
/* end */
.r_menu_Two_Tab{ height:26px; clear:both;overflow:hidden;} /* Two Tab */
.r_menu_Two_Tab ul{}
.r_menu_Two_Tab li{float:left; width:150px; height:26px; cursor:pointer;
line-height:28px; color:#1f3a87;}
.r_menu_Two_Tab .active{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -465px
no-repeat;}
.r_menu_Two_Tab .normal{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -505px
no-repeat;}
.r_menu_Four_Tab{height:26px; clear:both;overflow:hidden;}/* Four Tab */
.r_menu_Four_Tab ul{}
.r_menu_Four_Tab li{float:left; width:75px; height:26px; cursor:pointer;
line-height:28px; color:#1f3a87;}
.r_menu_Four_Tab .active{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -662px
no-repeat;}
.r_menu_Four_Tab .normal{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -621px
no-repeat;}
.r_menu_Five_Tab{ height:26px; clear:both;color:#1f3a87;} /* five Tab */
.r_menu_Five_Tab ul{}
.r_menu_Five_Tab li{float:left;line-height:28px; width:60px;
height:26px;cursor:pointer;}
.r_menu_Five_Tab .normal{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -214px
no-repeat;}
.r_menu_Five_Tab .active{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 0 -255px
no-repeat;}
.r_menu_Five_Tab a:visited{color:#1f3a87;}
.r_menu_Five_Tab a:hover{color:#bc2931;}
.r_bg1{ background:url(http://img1.cache.netease.com/cnews/netease/bg_1.gif
);}
.r_TopLine{border-top:1px solid #ccc;}
.r_line{border:1px solid #ccc; margin:0;}
.r_h1{height:123px;}/* Right Ad */
/* Netease Product */
.neteaseProduct{ border-top:1px solid #ccc; border-bottom:1px solid #ccc;
padding:3px 0 0; margin:0 1px; height:115px; overflow:hidden; clear:both;}
.neteaseProduct .list{ margin:0 auto; width:98%;clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 0 -295px repeat-x;
height:29px; font-size:14px; text-align:left;}
.neteaseProduct .s1{ float:left; width:59px; height:23px; margin:2px 0 0;
background:#fff;}
.neteaseProduct .s1 h5{font-size:12px; font-weight:normal; padding:7px 0 0
29px; text-align:left;}
.neteaseProduct .s2{float:left; padding:8px 0 0 8px;}
.neteaseProduct .bg{background:none;}
.neteaseProduct .bg1{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 4px -51px
no-repeat;}
.neteaseProduct .bg2{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 4px -93px
no-repeat;}
.neteaseProduct .bg3{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 4px -136px
no-repeat;}
.neteaseProduct .bg4{background:url(
http://img1.cache.netease.com/cnews/netease/title_bg.gif) 4px -176px
no-repeat;}
.neteaseProduct a{color:#1f3a87;}
.neteaseProduct a:visited{color:#1f3a87;}
.neteaseProduct a:hover{color:#bc2931;}
/* New Message  080912 */
.newMessage{background:#fff; clear:both; margin:0 1px;}
.newMessage .title{height:24px; background:#fff; border-top:1px solid #ccc;
border-bottom:1px solid #ccc; clear:both;overflow:hidden;}
.newMessage .title h3{ float:left; padding:6px 0 0 9px;}
.newMessage .title .mail{float:left;width:px;overflow:hidden; padding:3px 0
0;}
.newMessage .title
.text{float:right;width:168px;overflow:hidden;text-align:left;}
.newMessage .title .text img{float:left; margin:3px 0 0 2px;}
.newMessage .title .text .s{float:left; line-height:26px;}
.newMessage .list{float:left; width:152px; padding:3px 0 0;}
.newMessage .list li{ background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 10px -37px no-repeat;
padding:0 0 0 18px; text-align:left; clear:both; line-height:20px;}
/* About */
.aboutNetease{ margin:12px auto 0; width:958px; height:25px;
background:#F2F6FB; border:1px solid #ccc;}
.aboutNetease ul{}
.aboutNetease li{padding:7px 0 0;  color:#CBCBCB;}
.aboutNetease li a{color:#1F3A87; padding:0 5px;}
.aboutNetease li a:visited{color:#1F3A87;}
.aboutNetease li a:hover{color:#bc2931;}
/* Foot */
.foot{ margin:0 auto; width:960px; line-height:21px; padding:5px 0; }
.foot img{margin:4px 0 0;}
/* AD */
#adMenuContent .normal{display:none;}
#adMenuContent .active{ display:block;}
.S_ad775{ clear:both;}
.S_ad960{margin:0 auto; width:960px; clear:both;}
.S_ad960 .l_ad{float:left; width:170px;}
.S_ad960 .r_ad{float:right; width:775px;}
.S_r_145{ clear:both; text-align:left;}
.S_r_145 .r{text-align:right;}
.S_r_145 li{float:left; width:50%;}
.S_r_14570{ clear:both; text-align:left;}
.S_r_14570 .r{text-align:right;}
.S_r_14570 li{padding:0 1px 0 3px;float:left; width:48%;}
.ad39{ height:55px; border-top:1px solid #ccc; margin:0 1px;  clear:both;}
.ad39 .picText{ clear:both; padding:7px 0 0; text-align:left;
background:#fff; height:21px;}
.ad39 .picText img{float:left;}
.ad39 .picText .text{float:left; padding:2px 0 0 10px;line-height:20px;}
.ad39 .list{float:left; width:149px;}
.ad39 .list ul{padding:6px 0 0; }
.ad39 .list li{ clear:both;background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
line-height:20px; text-align:left; padding:0 0 0 20px;}
.adeguo{ height:55px; background:#fff; border:1px solid #ccc; clear:both;}
.adeguo .picText{ clear:both; padding:7px 0 0; text-align:left;}
.adeguo .picText img{float:left;}
.adeguo .picText .text{float:left; padding:2px 0 0 10px;line-height:20px;}
.adeguo .list{float:left; width:149px;}
.adeguo .list ul{padding:4px 0 0; }
.adeguo .list li{ clear:both;list-style-type:none; background:url(
http://img1.cache.netease.com/cnews/163/img6/i1.gif) 11px 7px no-repeat;
text-align:left; padding:3px 0 3px 20px;}
.aoyun_m_list{float:left; width:146px; padding:9px 0 0;}
.aoyun_m_list li{ background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 5px 7px no-repeat;
padding:0 0 0 13px; text-align:left; clear:both; line-height:20px;}
/* 12 04 娱乐板块修改 */
.sideTitle {}
.sideTitle .sideBar {float:left; line-height:13px; width:16px;
overflow:hidden; margin-left:2px;}
.sideTitle .pic_top {background:url(
http://img1.cache.netease.com/cnews/netease/toppic01.gif) 1px top no-repeat;
padding-top:4px; display:block; margin-top:3px; text-align:left;}
.sideTitle .pic_bot {background:url(
http://img1.cache.netease.com/cnews/netease/bottompic01.gif) 1px bottom
no-repeat; padding-bottom:2px; display:block; margin-bottom:8px;
text-align:left; clear:both;}
.imgText80 {padding-left:91px; clear:both;}
.imgText80 .imgSide {float:left; margin-left:-82px; border:1px solid #ccc;}
.imgText80 ul {float:left;}
/* end */
/* 4 14 新闻版面 第四帧blog */
.midContent .colRight .digest {line-height:20px; margin:4px 0 0 18px;
text-align:left;}
.blog_side {border:1px solid #dcdddd; text-align:left; padding:6px;}
.blog_side h3 {fot-size:12px; font-weight:bold; line-height:21px;}
.blog_side .sideImg {float:left; margin:0 6px 6px 0; border:1px solid #ccc;}
.blog_side .digest {line-height:20px; text-align:left; text-indent:2em;
margin:0;}
.blog_side .list_blog li {text-align:left; line-height:20px; clear:both;
margin-bottom:3px;}
.blog_side .list_blog li .tr {clear:both; line-height:19px;}
.blog_side .list_blog li .td {background:#dcdddd; float:left; height:17px;
line-height:19px; padding:0 4px; margin:0 6px 0 0;}
.midContent .more .left {float:left;}
/* end */
/* 6 4 亚运推荐版面 */
.rightContent .colLeft {width:122px; float:left; display:inline;
margin-left:4px; text-align:left;}
.rightContent .colLeft img {border:1px solid #ccc; clear:both;}
.rightContent .colRight {width:170px; float:left; overflow:hidden;}
.rightContent .colRight .bigsize {font-family:'黑体'; font-size:18px;
font-weight:100; line-height:18px; margin:0; padding:2px 0 0 5px;}
.rightContent .colRight .list1 li {float:left; clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) no-repeat scroll 12px
-37px; line-height:19px; padding-left:20px; text-align:left; width:100%;}
/* end */
</style>
<script type="text/javascript">
//<![CDATA[
// 163 AJAX Tab
// update 2006.10.18
// 增加鼠标延迟感应特性。
// update 2006.10.8
// A 标签 href 属性将保持原有HTML功能。增加urn属性为AJAX Load 路径。
// update 2006.10.11
// 修正IE5.0 undefined 未定义错误,增加脚本错误屏蔽
var Browser = new Object();
Browser.isMozilla = (typeof document.implementation != 'undefined') &&
(typeof document.implementation.createDocument != 'undefined') && (typeof
HTMLDocument!='undefined');
Browser.isIE = window.ActiveXObject ? true : false;
Browser.isFirefox =
(navigator.userAgent.toLowerCase().indexOf("firefox")!=-1);
Browser.isOpera = (navigator.userAgent.toLowerCase().indexOf("opera")!=-1);
if (Browser.isFirefox) { // entend Event Mod for FireFox
 extendEventObject();
}
function extendEventObject() {
 Event.prototype.__defineGetter__("srcElement", function () {
  var node = this.target;
  while (node.nodeType != 1) node = node.parentNode;
  return node;
 });
 Event.prototype.__defineGetter__("fromElement", function () {
  var node;
  if (this.type == "mouseover")
   node = this.relatedTarget;
  else if (this.type == "mouseout")
   node = this.target;
  if (!node) return;
  while (node.nodeType != 1) node = node.parentNode;
  return node;
 });
 Event.prototype.__defineGetter__("toElement", function () {
  var node;
  if (this.type == "mouseout")
   node = this.relatedTarget;
  else if (this.type == "mouseover")
   node = this.target;
  if (!node) return;
  while (node.nodeType != 1) node = node.parentNode;
  return node;
 });
}
function IsChild(cNode,pNode){
 while(cNode!=null){
  cNode=cNode.parentNode;
  if(cNode==pNode) return true;
 }
 return false;
}
var ajccache=new Object();
var waitInterval;
var tempref;
var MouseDelayTime=150;//鼠标感应延迟300毫秒
function getTBprefixName(str,sta){
 if(str.indexOf("active")!=-1 || str.indexOf("normal")!=-1)
str=str.substr(6);
  else if(str.indexOf("over")!=-1) str=str.substr(4);
   else str="";
 return sta+str;
}
function startajaxtabs(){
 for(var i=0;i<arguments.length;i++)
 {
  var ulobj=document.getElementById(arguments[i]);
   ulist=ulobj.getElementsByTagName("li");
   for(var j=0;j<ulist.length;j++)
   {
    var thelist=ulist[j];
    if(thelist.parentNode.parentNode!=ulobj) continue;//只有第一层li有效 fixed
2006.9.29
    var ulistlink=thelist.getElementsByTagName("a")[0];
    var ulistlinkurl=ulistlink.getAttribute("urn");
    var ulistlinktarget=ulistlink.getAttribute("rel");
    thelist.setActive=function(bactive){
     if(bactive){
      this.status="active";
      this.className=getTBprefixName(this.className,"active");
     }else{
      this.status="normal";
      this.className=getTBprefixName(this.className,"normal");
     }
    }
    thelist.LoadTab=function(){
     this.setActive(true);
     this.parentNode.parentNode.activetab.setActive(false);
     this.parentNode.parentNode.activetab=this;
     var ulistlink=this.getElementsByTagName("a")[0];
     loadAJAXTab(ulistlink.getAttribute("urn"),ulistlink.getAttribute("rel"));
    }
    thelist.onmouseover=function(aEvent){
     var myEvent = window.event ? window.event : aEvent;
     var fm=myEvent.fromElement;
     if(IsChild(fm,this) || fm==this) return;//过滤子元素event
     if(this.status=="active") return;
     tempref=this;
     clearTimeout(waitInterval);
     waitInterval=window.setTimeout("tempref.LoadTab();",MouseDelayTime);
    }
    thelist.onmouseout=function(aEvent){
     var myEvent = window.event ? window.event : aEvent;
     var em=myEvent.toElement;
     if(IsChild(em,this) || em==this) return; //过滤子元素event
     if(this.status=="active") return;
     clearTimeout(waitInterval);
    }
    if(ulistlinkurl.indexOf("#default")!=-1){
     thelist.setActive(true);
     ulobj.activetab=thelist;
     ajccache[ulistlinkurl]=getElement(ulistlinktarget).innerHTML;
    }else{
     thelist.setActive(false);
    }
   }
  if(ulobj.activetab==null) ulobj.activetab=ulist[0];
 }
}
function getXmlhttp()
{
 var http_request;

 if(window.XMLHttpRequest) {
  http_request = new XMLHttpRequest();
  if (http_request.overrideMimeType) {
   http_request.overrideMimeType("text/xml");
  }
 }
 else if (window.ActiveXObject) {
  try {
   http_request = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (e) {
   try {
    http_request = new ActiveXObject("Microsoft.XMLHTTP");
   } catch (e) {}
  }
 }
 if (!http_request) {
  window.alert("can't create XMLHttpRequest object.");
  return null;
 }
 return http_request;
}
function loadAJAXTab(url,contentid){
 var ocontent=getElement(contentid);
 if(ajccache[url]==null) {
  var xhttp=getXmlhttp();
   xhttp.onreadystatechange=function(){
    if(xhttp.readyState == 4 && (xhttp.status==200 ||
window.location.href.indexOf("http")==-1))
    {
     ocontent.innerHTML=xhttp.responseText;
     ajccache[url]=ocontent.innerHTML;
    }
   }
  xhttp.open("GET",url,true);
  xhttp.send(null);
 }else{
  ocontent.innerHTML=ajccache[url];
 }
}
window.onerror=function(){return true}
//xml.js
var xhr;
function getXHR()
{
 try {
  xhr=new ActiveXObject("Msxml2.XMLHTTP");
 } catch (e) {
  try {
   xhr=new ActiveXObject("Microsoft.XMLHTTP");
  } catch (e) {
   xhr=false;
  }
 }
 if(!xhr&&typeof XMLHttpRequest!='undefined')
 {
  xhr=new XMLHttpRequest();
 }

 return xhr;
}
function openXHR(method,url,callback)
{
 getXHR();
 xhr.open(method,url);
 xhr.onreadystatechange=function()
 {
  if(xhr.readyState!=4)return;
  callback(xhr);
 }
 xhr.send(null);
}
function loadXML(method,url,callback)
{
 getXHR();
 xhr.open(method,url);
 xhr.setRequestHeader("Content-Type","text/xml");
 xhr.setRequestHeader("Content-Type","GBK");
 xhr.onreadystatechange=function()
 {
  if(xhr.readyState!=4)return;
  callback(xhr.responseXML);
 }
 xhr.send(null);
}
//搜索引擎
function soComm(obj){
obj.elements["word"].value=obj.elements["q"].value;
obj.elements["keyWord"].value=obj.elements["q"].value;
obj.action=obj.elements["url"].value;
}
function soCar(id){
obj=document.getElementById(id);
var url="http://page.so.163.com/Ztc.php";;
obj.action=url;
obj.submit();
}
/*weather begin*/
function getElement(aID)
{
  return (document.getElementById) ? document.getElementById(aID):
document.all[aID];
}
//local
function getWeather(xmlDom)
{
var contemt="";
 var doc=document.getElementById("div_weather");
 var node=xmlDom.getElementsByTagName("weather");
   if(node.length){
   var len=node.length;
   for(var i=0;i<len;i++)
   {
    var c=node[i].getAttribute("c");
    var city=node[i].getAttribute("city");
    var wd=node[i].getAttribute("wd");
    var qx=node[i].getAttribute("qx");
    var img=node[i].getAttribute("qximg");
  if(img!=''&& img.length>0)
  {
   var imgs=img.split(",");

   contemt+='<div class="s"><a href="
http://weather.news.163.com/";>'+c+':'+wd+'<http://weather.news.163.com/%22%3E'+c+':'+wd+'>'+qx+'</a></div>';
   for( var j=0;j<imgs.length;j++)
   {
   contemt+='<img src=
http://img1.cache.netease.com/cnews/img/weatherlogo/'+imgs[j]+'>';
   }
  }
   }
   doc.innerHTML=contemt;
   }
}
function weather(coder)
{
 loadXML("GET","/weatherxml/"+coder+".xml",getWeather);
}
var city = new
Array("安徽","黑龙江","山东","北京","湖北","山西","福建","湖南","陕西","甘肃","吉林","上海","广东","江苏","四川","广西","江西","天津","贵州","辽宁","西藏","海南","内蒙古","新疆","河北","宁夏","云南","河南","青海","浙江","重庆");
var weaths = new
Array('58321','50953','54823','54511','57494','53772','58847','57679','57036','52889','54161','58367','59287','58238','56294','59431','58606','54527','57816','54342','55591','59758','53463','51463','53698','53614','56778','57083','52866','58457','57516');
function getCookieVal (offset) {
  var endstr = document.cookie.indexOf (";", offset);
  if (endstr == -1)
  endstr = document.cookie.length;
  return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
  var arg = name + "=";
  var alen = arg.length;
  var clen = document.cookie.length;
  var i = 0;
  while (i < clen) {
    var j = i + alen;
    if (document.cookie.substring(i, j) == arg)
      return getCookieVal (j);
    i = document.cookie.indexOf(" ", i) + 1;
    if (i == 0)
       break;
  }
  return "";
}
function SetCookie(cookieName,cookieValue,nDays) {
 var today = new Date();
 var expire = new Date();
 if (nDays==null || nDays==0) nDays=1;
 expire.setTime(today.getTime() + 3600000*24*nDays);
 document.cookie = cookieName+"="+escape(cookieValue) + ";path=/;domain=.
163.com;expires="+expire.toGMTString();
}
//首行登录
function loginSubmit(login){
var userName = login.elements['username'];
var password = login.elements['password'];
var ursname = login.elements['ursname'];
var loginSelect = login.elements['loginSelect'].value;
var selectNum = login.elements["loginSelect"].selectedIndex;
SetCookie("selectValue",selectNum,365);
if (userName.value == "") {
    alert("请输入用户名");
    return false;
}
if (password.value == "") {
    alert("请输入密码");
    password.focus();
    return false;
}
if (loginSelect == "网易通行证") {
    return true;
}
if (loginSelect == "163邮箱") {
    login.action = "
https://reg.163.com/logins.jsp?url=http://entry.mail.163.com/coremail/fcg/ntesdoor2?lightweight=1
&"
}
if (loginSelect == "126邮箱") {
    userName.name = "user";
    password.name = "password";
    ursname.name = "username";
    ursname.value = userName.value + "@126.com";
    login.action = "
https://reg.163.com/logins.jsp?type=1&url=http://entry.mail.126.com/cgi/ntesdoor?hid%3D10010102%26lightweight%3D1%26verifycookie%3D1%26language%3D0%26style%3D-1
";
}
if (loginSelect == "VIP邮箱") {
    login.action = "
http://reg.vip.163.com/logon.m?language=-1&style=-1&enterVip=true";
}
if (loginSelect == "188财富邮") {
    userName.name = "user";
    password.name = "pass";
    login.action = "http://reg.mail.188.com/servlet/coremail/login?";
}
if (loginSelect == "Yeah邮箱") {
    userName.name = "user";
    ursname.name = "username";
    ursname.value = userName.value + "@yeah.net";
    password.name = "password";
    login.action = "
https://reg.163.com/logins.jsp?type=1&url=http://entry.yeah.net/cgi/ntesdoor?lightweight%3D1%26verifycookie%3D1%26style%3D-1
";
}
if (loginSelect == "Netease邮箱") {
    userName.name = "user";
    ursname.name = "username";
    ursname.value = userName.value + "@netease.com";
    password.name = "password";
    login.action = "
https://reg.163.com/logins.jsp?type=1&url=http://entry.yeah.net/cgi/ntesdoor?lightweight%3D1%26verifycookie%3D1%26style%3D-1
";
}
login.submit();
}
function enterSubmit(event){
var obj = event.srcElement?event.srcElement:event.target;
var login = obj.form;
if(event.keyCode==13){loginSubmit(login);}
}
function getCityWeatherID(cityname){
        for(i=0;i<city.length;i++){
        if(city[i]==cityname){
                return weaths[i];
                }
        }
        return "54511";
}
var loc = GetCookie("theaddr");
if(!loc){
document.write("<script type='text/javascript' src='
http://61.135.253.47/ipquery'><" + "/script>");
}
var wloc = GetCookie("NTES_WeatherAddr");
if(!wloc){
 wloc=getCityWeatherID(loc);
}
//导航的地方新闻
var addr = new
Array("ah","hlj","sd","bj","hubei","sx","fj","hunan","shanxi","gs","jl","sh","gd","js","sc","gx","jx","tj","guizhou","ln","xz","hainan","nmg","xj","hb","nx","yn","henan","qh","zj","cq");
function getLNewsHomeByCityName(aCity){
 for(i=0;i<city.length;i++){
  if(city[i]==aCity){
   return "http://"; + addr[i] + ".news.163.com/";
  }
 }
 return "http://bj.news.163.com/";;
}
//]]>
</script>
</head>
<body>
<!-- 首页顶部 -->
<!-- 通行证登录 -->
<div class="passport">
<form id="login" name="login" method="post" action="
https://reg.163.com/logins.jsp"; target="_self" onsubmit="return
loginSubmit(this);">
<input type="hidden" name="product" value="163" />
<input type="hidden" name="type" value="1" />
<input type="hidden" name="ursname" value="" />
<div class="s1"><label for="userName">用户名</label></div>
<div class="s2"><input id="userName" name="username" /></div>
<div class="s1"><label for="password">密码</label></div>
<div class="s2"><input id="password" name="password" type="password"
/></div>
<div class="s2"><select id="loginSelect"
onkeydown="enterSubmit(event)"><option value="网易通行证"
selected="selected">网易通行证</option><option
value="163邮箱">163邮箱</option><option value="126邮箱">126邮箱</option><option
value="Yeah邮箱">Yeah邮箱</option><option value="VIP邮箱">VIP邮箱</option><option
value="188财富邮">188财富邮</option></select></div>
<script type="text/javascript">
var cookieSelect = GetCookie("selectValue");
document.getElementById("loginSelect").selectedIndex =
parseInt(cookieSelect);
</script>
<div class="s3">
<input type="submit" value="登录" />
</div>
<div class="s1"><a href="http://reg.163.com/reg0.shtml";>注册通行证</a> | <a
href="http://reg.email.163.com/mailregAll/reg0.jsp?from=163
">注册免费邮箱</a></div>
</form>
<div class="s4"><a href="http://email.163.com/";>免费邮箱</a> <a href="
http://vip.163.com/";>VIP <http://vip.163.com/%22%3EVIP>邮箱</a> <a href="
http://www.188.com/";>188 <http://www.188.com/%22%3E188>财富邮</a> │一卡通:<a
href="http://pay.163.com/";>充值中心</a> <a href="http://ecard.163.com/";>在线购买</a>
<a target="_self" href="http://www.163.com/";
onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('
http://www.163.com/');" class="S_home" title="把网页设为首页">把网易设为首页</a></div>
</div>
<!-- 导航 -->
<div class="globalMenu">
<div class="title">
  <a href="http://www.163.com/";><img <http://www.163.com/%22%3E%3Cimg> src="
http://img1.cache.netease.com/cnews/netease/logo_w.gif"; alt="网易" width="111"
height="36" border="0" /></a>
  </div>
<div class="content">
<div class="menu s1 stroke">
<ul>
<li>
<a href="http://news.163.com/"; class="tip">新闻</a> <a href="
http://war.news.163.com/";>军事</a> <a href="http://news.163.com/photo/";>图片</a>
<a href="http://news.163.com/review/";>评论</a>
</li>
<li class="lineH">
<a href="http://sports.163.com/"; class="tip">体育</a> <a href="
http://sports.163.com/nba/";>NBA</a<http://sports.163.com/nba/%22%3ENBA%3C/a>>
<a 
href="http://cbachina.163.com/";>CBA</a<http://cbachina.163.com/%22%3ECBA%3C/a>>
<a href="http://sports.163.com/china/";>中超</a>
</li>
</ul>
</div>
<div class="menu s1 stroke">
<ul>
<li><a href="http://ent.163.com/"; class="tip">娱乐</a> <a href="
http://ent.163.com/movie/";>电影</a> <a href="http://ent.163.com/tv/";>电视</a> <a
href="http://ent.163.com/music/";>音乐</a></li>
<li class="lineH"><a href="http://lady.163.com/"; class="tip">女人</a> <a
href="http://lady.163.com/top/";>时尚</a> <a
href="http://lady.163.com/sense/";>情爱</a>
<a href="http://lady.163.com/beauty/";>美容</a></li>
</ul>
</div>
<div class="menu s1 stroke">
<ul>
<li><a href="http://money.163.com/"; class="tip">财经</a> <a href="
http://money.163.com/stock/";>股票</a> <a href="http://money.163.com/fund/";>基金</a>
<a href="http://biz.163.com/";>商业</a></li>
<li class="lineH"><a href="http://tech.163.com/"; class="tip">科技</a> <a
href="http://digi.163.com/";>数码</a> <a href="http://mobile.163.com/";>手机</a>
<a href="http://tech.163.com/digi/tv/";>家电</a></li>
</ul>
</div>
<div class="menu s2 stroke">
<ul>
<li><a href="http://auto.163.com"; class="tip">汽车</a> <a href="
http://product.auto.163.com/";>车库</a> <a href="http://nie.163.com/
">游戏</a></li>
<li class="lineH"><a href="http://2010.163.com/"; class="tip">亚运</a> <a
href="http://www.gz2010.cn/";>官网</a> <a href="http://sports.163.com/lottery/
">彩票</a></li>
</ul>
</div>
<div class="menu s2 stroke">
<ul>
<li><a href="http://house.163.com/"; class="tip" id="houseUrl">房产</a> <a
id="homeUrl" href="http://home.163.com/";>家居</a> <a href="http://163.39.net/
">健康</a></li>
<li class="lineH"><a href="http://v.163.com/"; class="tip">视频</a> <a href="
http://baby.163.com/";>亲子</a> <a href="http://edu.163.com/";>教育</a></li>
</ul>
</div>
<div class="menu s2">
<ul>
<li><a href="http://bbs.163.com/"; class="tip">论坛</a> <a href="
http://huodong.bbs.163.com/";>活动</a> <a href="http://gongyi.163.com/
">公益</a></li>
<li class="lineH"><a href="http://blog.163.com/?fromNavigation";
class="tip">博客</a> <a href="http://history.news.163.com/";>历史</a> <a href="
http://pp.blog.163.com/";>拍拍</a></li>
</ul>
</div>
</div>
</div>
<!-- 有道搜索开始 -->
<script>
    var yodaoDefault="搜索超过一百亿中文网页";
    var focusFlag = false;
    function inputFocus(e){
        if(e.value== yodaoDefault) {
            e.value='';
        }
        focusFlag = true;
        e.style.color="black";
        e.style.font="14px '宋体',arial";
        e.style.height="21px";
        e.style.paddingTop="3px";
    }
    function checkInput(){
        var e = document.getElementById("query");
        if(e.value==yodaoDefault){
           e.value="";
          return true;
        }
    }
</script>
<script type="text/javascript" src="
http://images4.cache.netease.com/yodaoimages/pack.r081118/autocomplete.163.r137243.js";></script<http://images4.cache.netease.com/yodaoimages/pack.r081118/autocomplete.163.r137243.js%22%3E%3C/script>
>
<div id="suggestDiv" style="z-index:120;"><iframe id="myId1" style="margin:
1px 0pt 0pt; padding: 0pt; position: absolute; display:
none;"></iframe><div></div><div id="myId2" style="position: absolute;
display: none;"></div></div>
<div class="youdaoarea">
<style>
a.weatheryoudao:hover{color:rgb(31, 58, 135);text-decoration:none;}
a.weatheryoudao:visited{color:rgb(31, 58, 135);text-decoration:none}
a.weatheryoudao:click{color:rgb(31, 58, 135);text-decoration:none}
.yodaoTab a:link, .yodaoTab a:visited, .yodaoTab a:hover {color:#1f3a87}
td.remindtt75 {font-size:12px; padding:2px;}
td.remindtt752 {font-size:12px; padding-left:2px;
padding-right:2px;color:#9e9e9e;}
.jstxhuitiaozuo {background-color:#EFEFF0; color:#8D9DBE; font-size:12px;
padding-left:5px; padding-top:1px;}
.jstxhuitiaoyou {background-color:#EFEFF0; color:#8D9DBE; font-size:12px;
padding-right:5px;}
.aa_highlight {background-color:#1F3A87; color:#ffffff;}
span.xukezheng, .remindpgray {color:#008000;}
.jstxlan:hover {color:#BC2931; text-decoration:underline; }
.jstxlan {color:#1F3A87; font-size:100%; cursor:pointer}
.cTabSelected {color:Black;font-weight:bold}
.cTab:hover{text-decoration:underline}
.cTab{color:#1F3A87;text-decoration:none;cursor:pointer;}
.cTabLinkOnly{color:#1F3A87;text-decoration:none;}
.cTabmore{color:#1F3A87;text-decoration:none;cursor:pointer;}
.cTabmore:hover{text-decoration:none}
.ctatext:hover{text-decoration:underline}
.ctatext{text-decoration:none;cursor:pointer;}
.ctastar:hover{text-decoration:none;color:#1F3A87;}
.ctastar:visited {color:#1F3A87;}
.ctastar{font-size:13px;text-decoration:none;cursor:pointer;font-family:arial,sans-serif;color:#1F3A87;}
.ctastar2:hover{text-decoration:underline;color:#1F3A87}
.ctastar2{font-size:12px;text-decoration:none;cursor:pointer;color:#1F3A87;}
.ctastar2:visited {color:#1F3A87;}
.ctastar3:hover{text-decoration:none;color:#1F3A87}
.ctastar3{font-size:12px;text-decoration:none;cursor:pointer;color:#1F3A87;}
.ctastar3:visited {color:#1F3A87;}
.youdaoarea{margin:0 auto; width:958px;
height:83px;_overflow:hidden;background:#f2f7fd; border-left:1px solid
#CBCBCB;border-right:1px solid #CBCBCB;border-bottom:1px solid
#CBCBCB;background:url(
http://images4.cache.netease.com/yodaoimages/pack.r081118/background.png);}
.weather_icon {float:left;margin-right:2px
}
.youdaoarea table tr td {font-size:12px;}
.youdaologo {
cursor:pointer;
float:left;
background: url(
http://images4.cache.netease.com/yodaoimages/pack.r081118/youdaologonew.gif)
no-repeat left top;width:117px;height:23px;
}
.youdaoinput{
border: 1px solid rgb(128, 128, 128);
background: rgb(255, 255, 255) url(
http://images.163.com/images/logo/sbox-bg.gif) no-repeat scroll 0% 0%;
width: 425px; font-size: 14px; height: 21px; -moz-background-clip:
-moz-initial; -moz-background-origin: -moz-initial;
-moz-background-inline-policy: -moz-initial; line-height: normal;
padding-left: 4px; padding-top: 3px; color: black; font-family: '宋体',arial;
font-style: normal;
font-variant: normal; font-weight: normal; font-size-adjust: none;
font-stretch: normal; -x-system-font: none;
}
</style>
<!-- 日历开始 -->
<script type="text/javascript">
function SetCookieWithDomain(domain,cookieName,cookieValue,nDays) {
 var today = new Date();
 var expire = new Date();
 if (nDays==null || nDays==0) nDays=1;
 expire.setTime(today.getTime() + 3600000*24*nDays);
 document.cookie = cookieName+"="+escape(cookieValue) + ";path=/;domain=" +
domain + ";expires="+expire.toGMTString();
}
</script>
<div style="float:left;width:135px;">
<table cellpadding=0 height="83px" cellspacing=0 border=0 width="132px">
<tr><td valign="bottom"
style="color:rgb(31,58,135);line-height:140%;padding-top:2px;text-align:center">
8月12日 星期三<BR>
农历六月二十二<BR>
</td></tr>
<tr><td valign="bottom" id="iyoudao" style="text-align: left;"><a href="
http://www.youdao.com/i?keyfrom=163.index";><img border="0" width="127"
height="20" title="上网首页自己造!" src="
http://images4.cache.netease.com/yodaoimages/pack.r081118/iyoudaolinknew2.gif"/></a></td></tr<http://images4.cache.netease.com/yodaoimages/pack.r081118/iyoudaolinknew2.gif%22/%3E%3C/a%3E%3C/td%3E%3C/tr>
>
</table>
</div>
<!-- 日历结束 -->
<div style="float:left;width:675px;">
<table style="" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td style="text-align:left" width="680px">
<div style="overflow: hidden; margin-top: 11px;margin-bottom:2px;
padding-left: 184px; color: rgb(30, 57, 136);">
<span id="yodaoWeb" class="cTabSelected">网页</span><span
style="color:#b9d6f9"> |  </span>
<span class="cTab" id="yodaoImage"><a id="imageLink" class="ctastar2"
onclick="changeProduct('image');return false" href="http://image.youdao.com";
target="_self">图片</a></span><span style="color:#b9d6f9"> |  </span>
<span class="cTabLinkOnly" id="yodaoNews"><a id="newsLink"  class="ctastar2"
onclick="changeProduct('news');return false" href="http://news.youdao.com";
target="_self">热闻</a></span><span style="color:#b9d6f9"> |  </span>
<span class="cTab" id="yodaoMusic"><a id="mp3Link" class="ctastar2"
onclick="changeProduct('mp3');return false" href="http://mp3.youdao.com";
target="_self">音乐</a></span><span style="color:#b9d6f9"> |  </span>
<span class="cTab" id="yodaoGouwu"><a id="gouwuLink" class="ctastar2"
onclick="changeProduct('gouwu');return false" href="http://gouwu.youdao.com";
target="_self">购物</a></span><span style="color:#b9d6f9"> |  </span>
<span class="cTab" id="yodaoDict"><a id="dictLink" class="ctastar2"
onclick="changeProduct('dict');return false" href="http://dict.youdao.com";
target="_self">海量词典</a></span><span style="color:#b9d6f9"> |  </span>
<span class="cTabMore" id="menuMoreLink"><a class="ctastar3" target="_self"
href="http://www.youdao.com/about/productlist.html"; id="youdaoMoreLink2"
onclick="javascript:return false;">更多</a><a style="hover:none"
target="_self" id="youdaoMoreLink" class="ctastar" href="
http://www.youdao.com/about/productlist.html"; onclick="javascript:return
false;"><small>??</small></a></span>
</div>
</td></tr>
</tbody></table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<form id="yodaoForm" name="sb" action="http://www.youdao.com/search";
method="get" autocomplete="off" target="_self">
<tbody>
<tr valign="top">
<td style="height:10px; padding-top: 5px;" width="98">
<div class="youdaologo" onclick="top.location.href='
http://www.youdao.com/?keyfrom=163.index'" title="点击进入 有道首页">&nbsp;</div>
</td>
<td width=7px>&nbsp;</td>
<td style="height:10px;" width="450">
<input id="query" name="q" autocomplete="off"  onfocus="inputFocus(this);"
class="youdaoinput">
</td>
<td width=7px>&nbsp;</td>
<td style="height: 10px;" align="left" width="181">
<input id="youdaoBtn" onclick="checkInput();" value="网页搜索" style="border:
0px none ; background: transparent url(
http://images4.cache.netease.com/yodaoimages/pack.r081118/yodaoarea_buttonback.gif)
repeat scroll 0% 0%;line-height:27px;height: 27px; width: 110px;
-moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial;
-moz-background-inline-policy: -moz-initial; font-weight: bold;"
type="submit">
</td>
</tr>
<input name="ue" value="gbk" type="hidden">
<input name="keyfrom" value="163.index" type="hidden">
<tr valign="top">
<td style="height: 10px; padding-top: 5px;" width="98"></td>
<td width="7"></td>
<td style="height: 10px;" width="450">
<CENTER><div style="overflow: hidden; margin-top: 5px; color: rgb(31, 58,
135);">
热门搜索:
<A target="_blank" HREF=
http://www.youdao.com/search?keyfrom=163.index.topword&q=%E5%8F%B0%E9%A3%8E%E8%8E%AB%E6%8B%89%E5%85%8B>台风莫拉克</A>

<A target="_blank" HREF=
http://www.youdao.com/search?keyfrom=163.index.topword&q=%E9%83%8E%E5%B9%B3%E5%9B%9E%E5%9B%BD%E6%89%A7%E6%95%99>郎平回国执教</A>

<A target="_blank" HREF=
http://www.youdao.com/search?keyfrom=163.index.topword&q=%E5%8D%B0%E8%8A%B1%E7%A8%8E%E4%B8%8A%E8%B0%83>印花税上调</A>

<A target="_blank" HREF=
http://www.youdao.com/search?keyfrom=163.index.topword&q=%E9%85%92%E4%BA%95%E6%B3%95%E5%AD%90%E5%90%B8%E6%AF%92>酒井法子吸毒</A>

<A target="_blank" HREF=
http://www.youdao.com/search?keyfrom=163.index.topword&q=%E7%AB%A0%E5%AD%90%E6%80%A1>章子怡</A>

 </div></CENTER></td>
<td width="7"> </td>
<td style="height: 10px;" align="left" width="181"></td>
</tr>
</tbody></form></table>
</div>
<style>
.popupMenu{width:6em;BORDER-RIGHT: #6779AE 1px solid; BORDER-TOP: #889EDB
1px solid; BORDER-LEFT: #889EDB 1px solid; BORDER-BOTTOM: #6779AE 1px solid;
BACKGROUND-COLOR:#ffffff;line-height:180%;font-size:12px; position:absolute;
z-index:100;text-align:left;}
A.noline:hover,A.noline:link,A.noline:visited
{text-decoration:none;COLOR:#1e3988;
}
</style>
<script type="text/javascript" src="
http://images4.cache.netease.com/yodaoimages/pack.r081118/popupmenu-2.js";></script<http://images4.cache.netease.com/yodaoimages/pack.r081118/popupmenu-2.js%22%3E%3C/script>
>
<div id="menuMore" class="popupMenu" style="display:none"></div>
<script>
function getSearchUrl(inputId, product, keyfrom) {
    var url = "http://"; + product + ".youdao.com/";
    if (window.RegExp && window.encodeURIComponent) {
        var input = document.getElementById(inputId);
        var query = input.value;
 if(query == yodaoDefault)
   query="";
        if (query != "")
{query=query.replace(/(^link:)|(^inlink:)|(^related:)/,"");
url=url+"search?q="+encodeURIComponent(query)+"&keyfrom="+keyfrom;}
        else {url=url+"?keyfrom="+keyfrom;}
    }
    return url;
}
function onLoadHandler() {
var menuMoreDesc = new Object();
menuMoreDesc.menuDiv = document.getElementById("menuMore");
menuMoreDesc.menuLink = document.getElementById("menuMoreLink");
menuMoreDesc.display = false;
menuMoreDesc.clickHandler = function(item) {
    if(typeof(item.product) != "undefined") {
        var url = getSearchUrl("query", item.product, "163.index");
    } else {
        var url = item.link;
    }
    window.open(url, "_parent");
};
menuMoreDesc.items = [{"product":"blog", "text":"博客"},
{"product":"map", "text":"地图"}, {"product":"video", "text":"视频"},
{"link":"http://fanyi.youdao.com","text<http://fanyi.youdao.com%22,%22text/>
":"翻译"},
{"link":"http://reader.youdao.com","text<http://reader.youdao.com%22,%22text/>
":"阅读"},
{"link":"http://tie.youdao.com";, "text":"快贴"},
{"link":"http://www.youdao.com/changyong";, "text":"常用搜索"},
{"type":"separator"},
{"link":"http://www.youdao.com/about/productlist.html";, "text":"全部产品"}];
popupMenu.createMenu(menuMoreDesc);
}
</script>
<!-- 天气预报开始 -->
<div style="float:left;width:137px;position:relative;">
<table height="83px" width="100%"><tr><td>
<div id="youdao_weather" style="color:rgb(31, 58, 135);">
<table width="100%" padding="0" margin="0">
<tr><td></td></tr>
</table>
</div>
<div id="changeAreaBox" style="background:url(
http://images4.cache.netease.com/yodaoimages/pack.r081118/changeboxbg.gif)
;height:116px;width:151px;z-index:100;display:none;position:absolute;left:0px;top:31px;">
<div style="padding:3px;clear:both">
<div
style="float:left;width:80px;font-size:12px;color:555555;text-align:left;">更换城市</div>
<div
style="float:left;width:65px;text-align:right;font-size:12px;color:555555"><a
href="" onclick="javascript:closeAcb(false);yclicklog(null,
'close_change_weather', '163_HOME_CLICK');return false;"><img src="
http://images4.cache.netease.com/yodaoimages/pack.r081118/closewindow.gif";
width="14" height="14" border="0" alt=""></a></div>
</div>
<div style="clear:both"><center>
<table cellpadding=2 cellspacing=0 border=0>
<tr><td colspan=2 height=9px></td></tr>
<tr>
<td style="font-size:12px;padding-top:4px;">省 份:</td>
<td style="color:#7777777;padding-top:4px;" align=left>
<select style="font-size:12px;width:72px" id="wps">
<option value="请选择">请选择</option>
</select>&nbsp;
</td>
</tr>
<tr>
<td style="font-size:12px;padding-top:3px;">城 市:</td>
<td style="color:#7777777;padding-top:3px;" align=left>
<select style="font-size:12px;width:72px;" id="wcs">
<option value="请选择">请选择</option>
</select>&nbsp;
</td>
</tr>
<tr><td></td><td style="padding-top:5px" align=left><a href=""
onclick="javascript:changeArea();return false;"><img src="
http://images4.cache.netease.com/yodaoimages/pack.r081118/savebutton.gif";
width="54" height="21" border="0" alt=""></a></td></tr>
</table>
</center></div>
</div>
<script type="text/javascript">
var
wp=["安徽","北京","重庆","福建","甘肃","广东","广西","贵州","海南","河北","河南","黑龙江","湖北","湖南","吉林","江苏","江西","辽宁","内蒙古","宁夏","青海","山东","山西","陕西","上海","四川","天津","西藏","新疆","云南","浙江","香港","澳门","台湾"];
var wc=[
/*安徽*/["安庆","蚌埠","亳州","巢湖","滁州","阜阳","合肥","淮北","淮南","黄山","六安","马鞍山","宿州","铜陵","芜湖","宣城"],
/*北京*/["北京"],
/*重庆*/["重庆"],
/*福建*/["福州","龙岩","南平","宁德","莆田","泉州","三明","厦门","漳州"],
/*甘肃*/["白银","定西","甘南","嘉峪关",/*"金昌",*/"酒泉","兰州","临夏","平凉","庆阳","天水","武威","张掖"],
/*广东*/["潮州","东莞","佛山","广州","河源","惠州","江门","揭阳","茂名","梅州","清远","汕头","汕尾","韶关","深圳","阳江","湛江","肇庆","中山","珠海"],
/*广西*/["百色","北海","防城港","贵港","桂林","桂平","贺州","柳州","南宁","钦州","梧州","玉林"],
/*贵州*/["安顺","毕节","赤水","都匀","贵阳","凯里","六盘水","铜仁","遵义"],
/*海南*/["儋州","海口","南沙岛",/*"琼山",*/"三亚","通什","文昌","西沙"],
/*河北*/["保定","沧州","承德","邯郸","衡水","廊坊","秦皇岛","石家庄","唐山","邢台","张家口"],
/*河南*/["安阳","鹤壁","济源","焦作","开封","洛阳","南阳","平顶山","濮阳","三门峡","商丘","新乡","信阳","许昌","郑州","周口","驻马店"],
/*黑龙江*/["大庆","大兴安岭","哈尔滨","鹤岗","黑河","鸡西","佳木斯","牡丹江","齐齐哈尔","七台河","双鸭山","绥化","伊春"],
/*湖北*/["鄂州","恩施","黄冈","黄石","荆门","荆州","十堰","随州","武汉","咸宁","襄樊","孝感","宜昌"],
/*湖南*/["常德","长沙","郴州","衡阳","怀化","吉首","娄底","邵阳","湘潭","益阳","永州","岳阳","张家界","株洲"],
/*吉林*/["白城","白山","长春","吉林市","辽源","四平","松原","延边"],
/*江苏*/["常州","淮安","连云港","南京","南通","苏州","泰州","无锡","徐州","盐城","扬州","宜兴","镇江"],
/*江西*/[/*"抚州",*/"赣州",/*"吉安",*/"景德镇","九江","南昌","萍乡","上饶","宜春","鹰潭"],
/*辽宁*/["鞍山","本溪","朝阳","大连","丹东","抚顺","阜新","葫芦岛","锦州","辽阳","沈阳","铁岭","营口"],
/*内蒙古*/["包头","赤峰","鄂尔多斯","呼和浩特","乌海","锡林浩特"],
/*宁夏*/["固原","银川","中卫"],
/*青海*/["果洛","海北","海南州","海西","黄南","西宁","玉树"],
/*山东*/["东营","菏泽","济南","济宁","聊城","临沂","青岛","曲阜","泰安","日照","潍坊","威海","烟台","枣庄","淄博"],
/*山西*/["长治","大同","晋城","晋中","临汾","朔州","太原","忻州","阳泉","运城"],
/*陕西*/["安康","宝鸡","韩城","汉中","商洛","铜川","渭南","西安","咸阳","延安","榆林"],
/*上海*/["上海"],
/*四川*/["阿坝","巴中","成都","达州","德阳","甘孜州","广元","乐山","凉山","泸州","绵阳","内江","攀枝花","雅安","宜宾","自贡"],
/*天津*/["天津"],
/*西藏*/["阿里","昌都","拉萨","林芝","那曲","日喀则","山南"],
/*新疆*/["阿克苏","阿勒泰","昌吉","哈密","和田","克拉玛依","喀什","库尔勒","石河子","塔城","吐鲁番","乌鲁木齐","伊犁"],
/*云南*/["保山","楚雄","大理","德宏","迪庆","红河","昆明","丽江","临沧","怒江",/*"曲靖",*/"思茅","文山","西双版纳","玉溪","昭通"],
/*浙江*/["杭州","湖州","嘉兴","金华","丽水","宁波","衢州","绍兴","台州","温州","舟山"],
/*香港*/["香港"],
/*澳门*/["澳门"],
/*台湾*/["高雄","台北"]
];
function initAcb(){
var wps=document.getElementById("wps");
for(var i=0;i<wp.length;i++){var pItem=wp[i];var pOpt=new Option(pItem,
i);wps.options[wps.options.length]=pOpt;}
wps.onchange=function(){var index=this.options[this.selectedIndex].value;var
wcs=document.getElementById("wcs");wcs.options.length=0;if(index=="请选择"){wcs.options[0]=new
Option("请选择","请选择");return;}var cs=wc[index];for (var
j=0;j<cs.length;j++){var cItem=cs[j];var cOpt=new
Option(cItem,cItem);wcs.options[wcs.options.length]=cOpt;}}
popupMenu.addEvent(document,"click",function(e){closeAcb(false);});
}
initAcb();
function stopEvent(event){stopPropagation(event);preventDefault(event);}
function
stopPropagation(event){if(event.stopPropagation){event.stopPropagation();}else{event.cancelBubble=true;}}
function
preventDefault(event){if(event.preventDefault){event.preventDefault();}else{event.returnValue=false;}}
function closeAcb(inbox){var
boxDiv=document.getElementById("changeAreaBox");if
(boxDiv.style.display=="block"){toggleAcb(null,inbox);}}
function toggleAcb(e, inbox) {
var boxDiv=document.getElementById("changeAreaBox");var
displayStatus=boxDiv.style.display;
if (displayStatus=="none"&&inbox){var
weatherDiv=document.getElementById("youdao_weather");/*var
weatherDivPos=popupMenu.getAbsolutePos(weatherDiv);boxDiv.style.left=(weatherDivPos.x-4)+"px";boxDiv.style.top=(weatherDivPos.y+13)+"px";*/boxDiv.style.display="block";toggleAci();popupMenu.addEvent(boxDiv,"click",function(event){stopEvent(event);closeAcb(true);return
false;});stopEvent(e);}
else
if(displayStatus=="block"){if(!inbox){boxDiv.style.display="none";toggleAci();}else{/*stopEvent(e);*/}}
}
function changeArea(){
var selectPobj=document.getElementById("wps");var
newPro=selectPobj.options[selectPobj.selectedIndex].text;var
selectCobj=document.getElementById("wcs");var
newCity=selectCobj.options[selectCobj.selectedIndex].text;closeAcb(false);if(newPro=="请选择"||newCity=="请选择")return;weather4Youdao(newCity);yclicklog(null,
'save_weather_changes', '163_HOME_CLICK',newPro,newCity);}
function toggleAci(){var
iconImg=document.getElementById("changeAreaIcon");if(iconImg){var
imgSrc=iconImg.src;if(imgSrc){if(imgSrc.indexOf("starup.gif")>0){iconImg.src=imgSrc.substr(0,imgSrc.length-10)+"stardown.gif";}else{iconImg.src=imgSrc.substr(0,imgSrc.length-12)+"starup.gif";}}}}
</script>
</td></tr></table>
</div>
<div id="weather_script"></div>
<script type="text/javascript">
var dryness=[{"level":"1级", "value":"干燥"},{"level":"2级",
"value":"湿润"},{"level":"3级", "value":"湿润"},{"level":"4级",
"value":"适中"},{"level":"5级", "value":"适中"}];
var ywcitys=new Array(
"58321:安徽","50953:黑龙江","54823:山东","57494:湖北","53772:山西","58847:福建","57679:湖南","57036:陕西","52889:甘肃","54161:吉林","59287:广东","58238:江苏","56294:四川","59432:广西","58606:江西","57816:贵州","54342:辽宁","55591:西藏","59758:海南","53463:内蒙古","51463:新疆","53698:河北","53614:宁夏","56778:云南","57083:河南","52866:青海","58457:浙江","54511:北京","54527:天津","53698:石家庄","53772:太原","53463:呼和浩特","54342:沈阳","54161:长春","50953:哈尔滨","58367:上海","58457:杭州","58321:合肥","58847:福州","54823:济南","57083:郑州","57494:武汉","57679:长沙","59287:广州","59432:南宁","59758:海口","56294:成都","57516:重庆","57816:贵阳","56778:昆明","55591:拉萨","57036:西安","52889:兰州","52866:西宁","53614:银川","51463:乌鲁木齐","58968:台北","58238:南京","58606:南昌","45005:香港","45011:澳门","54534:唐山","54401:张家口","54515:廊坊","53892:邯郸","53798:邢台","54616:沧州","54702:衡水","53782:阳泉","53976:晋城","53776:晋中","53868:临汾","53959:运城","53882:长治","53578:朔州","53674:忻州","53446:包头","54218:赤峰","50527:海拉尔","54102:锡林浩特","53512:乌海","53543:鄂尔多斯","54453:葫芦岛","54660:旅顺","54346:本溪","54324:朝阳","54351:抚顺","54249:铁岭","54347:辽阳","54471:营口","54237:阜新","54292:延边","54172:吉林市","54371:白山","50936:白城","54157:四平","50946:松原","54260:辽源","54094:牡丹江","50745:齐齐哈尔","50854:大庆","50774:伊春","50884:双鸭山","50775:鹤岗","50978:鸡西","50873:佳木斯","50973:七台河","50853:绥化","50468:黑河","58356:昆山","58259:南通","58377:太仓","58349:吴县","58027:徐州","58346:宜兴","58248:镇江","58145:淮安","58352:常熟","58151:盐城","58246:泰州","58450:湖州","58549:金华","58562:宁波","58646:丽水","58453:绍兴","58633:衢州","58452:嘉兴","58660:台州","58477:舟山","58326:巢湖","58221:蚌埠","58424:安庆","58311:六安","58236:滁州","58336:马鞍山","58203:阜阳","58433:宣城","58429:铜陵","58116:淮北","58334:芜湖","58102:亳州","58122:宿州","58224:淮南","58927:龙岩","58834:南平","58846:宁德","58946:莆田","59131:泉州","58828:三明","59126:漳州","57894:井冈山","57786:萍乡","58502:九江","58623:上饶","58617:抚州","57797:吉安","58627:鹰潭","57793:宜春","58024:枣庄","54806:聊城","54918:曲阜","54915:济宁","54938:临沂","54906:菏泽","54827:泰安","54945:日照","54736:东营","53978:济源","57091:开封","53898:安阳","53982:焦作","53990:鹤壁","57171:平顶山","58005:商丘","54900:濮阳","57178:南阳","57089:许昌","57297:信阳","57051:三门峡","57290:驻马店","57195:周口","53986:新乡","57498:黄冈","57447:恩施","57476:荆州","57362:神农架","57256:十堰","57590:咸宁","57278:襄樊","57482:孝感","57381:随州","58407:黄石","57377:荆门","57496:鄂州","57766:邵阳","57662:常德","57972:郴州","57649:吉首","57780:株洲","57763:娄底","57773:湘潭","57674:益阳","57866:永州","57584:岳阳","57872:衡阳","57749:怀化","57771:韶山","59312:潮州","59278:肇庆","59501:汕尾","59293:河源","59082:韶关","59315:揭阳","59117:梅州","59485:中山","59298:惠州","59289:东莞","59280:清远","59476:江门","59659:茂名","59269:德庆","59663:阳江","59211:百色","59046:柳州","59265:梧州","59453:玉林","59254:桂平","59065:贺州","59632:钦州","59249:贵港","59635:防城港","59845:儋州","59757:琼山","59941:通什","59856:文昌","57508:泸州","57503:内江","56571:凉山","56172:阿坝","57313:巴中","57206:广元","56386:乐山","56196:绵阳","56198:德阳","56666:攀枝花","56287:雅安","56492:宜宾","56396:自贡","56146:甘孜州","57328:达州","57806:安顺","57609:赤水","57713:遵义","57741:铜仁","56693:六盘水","57707:毕节","57825:凯里","57827:都匀","56748:保山","56768:楚雄","56844:德宏","56985:红河","56951:临沧","56643:怒江","56783:曲靖","56964:思茅","56994:文山","56875:玉溪","56586:昭通","56137:昌都","55228:阿里","55299:那曲","55578:日喀则","55598:山南","53955:韩城","57245:安康","57127:汉中","57016:宝鸡","57048:咸阳","53646:榆林","57045:渭南","57143:商洛","53947:铜川","52896:白银","53829:庆阳","52533:酒泉","57006:天水","52679:武威","52652:张掖","56080:甘南","52984:临夏","53915:平凉","52995:定西","52675:金昌","52853:海北","52856:海南州","52737:海西","52974:黄南","56043:果洛","56029:玉树","53817:固原","53704:中卫","51076:阿勒泰","51628:阿克苏","51368:昌吉","52203:哈密","51828:和田","51709:喀什","51243:克拉玛依","51356:石河子","51133:塔城","51656:库尔勒","59554:高雄","54662:大连","54857:青岛","59134:厦门","59316:汕头","59493:深圳","52418:敦煌","58437:黄山","58506:庐山","53487:大同","54774:威海","53588:五台山","54423:承德","54826:泰山","56385:峨眉山","56751:大理","57046:华山","57957:桂林","59644:北海","59948:三亚","54765:烟台","57073:洛阳","54843:潍坊","58423:九华山","57461:宜昌","57558:张家界","57809:黄果树","56182:九寨沟","54497:丹东","54830:淄博","54449:秦皇岛","58357:苏州","58354:无锡","58527:景德镇","59488:珠海","58044:连云港","53845:延安","57993:赣州","59981:西沙","59997:南沙岛","54339:鞍山","59658:湛江","54337:锦州","54602:保定","59288:佛山","58245:扬州","58343:常州","58656:乐清","58659:温州","58730:武夷山市","50526:牙克石","50514:满洲里","54386:长白","50442:大兴安岭","58456:乌镇","58517:鄱阳湖景区","57777:衡山","56543:迪庆","56651:丽江","56959:西双版纳","56444:德钦","52754:刚察","56312:林芝","51573:吐鲁番","51431:伊犁"
);
function setWeather(city, wd, qx, fl, fx, img1, img2, dry)
{
        var weatherDiv=document.getElementById("youdao_weather");
        if (city!=null && city=="") {
           weatherDiv.innerHTML="<table width='100%' padding='0'
margin='0'><tr><td></td></tr></table>";
           return;
        }
        if ((wd==null || wd=="") || (qx==null || qx=="") || (img1==null ||
img1==""))  return;
        var youdaoWeatherURL="
http://www.youdao.com/search?keyfrom=163.index.weather&q="; + city + "天气";
        var content = "";
        content="<center>";
        content+="<table cellpadding=0 cellspacing=0 border=0>";
        content+="<tr><td style='text-align: center; padding-bottom:
2px;'>";
        content+=city;
        content+="<span><a href=''
onclick='javascript:toggleAcb(event,true);yclicklog(null,
\"click_change_weather\", \"163_HOME_CLICK\");return false;'><img
id='changeAreaIcon' src='
http://images4.cache.netease.com/yodaoimages/pack.r081118/stardown.gif'
width='11' height='11' border='0' alt='' title='更换城市'
style='vertical-align:middle;'/></A>&nbsp;</span>";
        content+="<a href='"+youdaoWeatherURL+"'
class='weatheryoudao'>今日</a>";
        content+="</td></tr>";
        content+="<tr><td style='text-align: center; padding-bottom:
2px;'>";
        content+="<a href='"+youdaoWeatherURL+"' class='weatheryoudao'>";
        content+="<img width='15' height='15' border='0' align='absmiddle'
alt='' src='http://images4.cache.netease.com/yodaoimages/weathericon/"+img1+";'/>
";
        content+=truncQx(qx)+"</a>";
        content+="</td></tr>";
        content+="<tr><td style='text-align: center;'>";
        content+="<a href='"+youdaoWeatherURL+"'
class='weatheryoudao'>"+wd+"</a>";
        content+="</td></tr>";
        content+="</table>";
        content+="</center>";
        var weatherDiv=document.getElementById("youdao_weather");
        weatherDiv.innerHTML=content;
        
SetCookieWithDomain("www.163.com","newWeatherAddr",city,365<http://www.163.com%22,%22newweatheraddr%22,city,365/>
);
}
function truncQx(qx){
  if(qx.length>7){
    var splits=qx.split("转");
    if(splits.length==2){
      return (splits[0].length>splits[1].length)?splits[0]:splits[1];
    }
  }
  return qx;
}
function getDryness(dry){
        if ((dry != null) && (dry.length > 2)) {
            var ls = dry.substring(0, 2);
            for(var i=0; i<dryness.length; i++) {
                var item = dryness[i];
                if (ls == item.level) return item.value;
            }
        }
        return "适中";
}
function getCityId(city){
        var i = 0;
        var splits;
        for(; i<ywcitys.length;i++) {
            splits = ywcitys[i].split(":");
            if(splits.length==2 && splits[1]==city) {
                return splits[0];
            }
        }
        return 54511;
}
function getTimeSuffix(){
   return "timeflag="+new Date();
}
function weather4Youdao(city)
{
        var url = "
http://images4.cache.netease.com/yodaoimages/new_weather/200908120801/"; +
getCityId(city);
        var scriptDiv=document.getElementById("weather_script");
        while(scriptDiv.childNodes.length>0){
           scriptDiv.removeChild(scriptDiv.firstChild);
        }
        var script = document.createElement('script');
        script.src = url;
        scriptDiv.appendChild(script);
}
var weatherAddr = GetCookie("newWeatherAddr");
if(!weatherAddr){
  weatherAddr = GetCookie("WeatherAddr");
  if(!weatherAddr){
    if(loc){
      weatherAddr=loc;
    }else{
      weatherAddr="北京";
    }
  }else{
    SetCookieWithDomain(".163.com","WeatherAddr",weatherAddr,-1);
  }
  
SetCookieWithDomain("www.163.com","newWeatherAddr",weatherAddr,365<http://www.163.com%22,%22newweatheraddr%22,weatheraddr,365/>
);
}
if(weatherAddr.indexOf(" ")>0){
  var addr=weatherAddr.split(" ");
  weatherAddr=addr[0];
}
weather4Youdao(weatherAddr);
</script>
<!-- 天气预报结束 -->
</div>
<script type="text/javascript">
if(typeof(SEvent) != "undefined") {
    var aa;
    var aaStartTag=false;
    aa = new AutoComplete("query", "aa", false, false, "
http://images4.cache.netease.com/yodaoimages/pack.r081118/downarrow.gif";,
true, "http://www.youdao.com";);
    aa.setSearchServer("http://www.youdao.com/search?";);
    aa.setLogServer("http://www.youdao.com/";);
    aa.setKeyFrom("163.index");
    if(SEvent.observe) {
        SEvent.observe(window, "load", function() {
          if(isIE()) onLoadHandler();
          focusFlag = true;
          if(isIE()) setTimeout(function(){setfocus();}, 10);
        });
    }
}
var searchBoxUserKeyed = false;
if(!isIE()) {
    onLoadHandler();
    setfocus();
}
function setfocus(){
    var flag = isIE();
    if(flag){
        //var tagName = document.activeElement.tagName.toUpperCase();
        var id = document.activeElement.id.toUpperCase();
        if(id=="USERNAME" || id=="PASSWORD" || id=="LOGINSELECT" ||
isFocusChange()){
           var input = document.getElementById('query');
           input.value="";
           inputBlur(input);
           return;
        } else {
           youdaoInputFocus();
        }
    }else{
        youdaoInputFocus();
    }
}
function youdaoInputFocus(){
    var input = document.getElementById('query');
    input.focus();
    if(input.value == yodaoDefault) input.value="";
    focusFlag = true;
    SEvent.observe(input, "keydown", autoBlurSearchBox);
}
function isIE(){
   var
notMSIE=(navigator&&navigator.userAgent.toLowerCase().indexOf("msie")==-1);
   if(!notMSIE) return true;
   return false;
}
function isIE6() {
   return isIE();
}
function isFocusChange(){
   var user=document.getElementById("userName");
   var pass=document.getElementById("password");
   if(user && user.value != "") return true;
   if(pass && pass.value != "") return true;
   return false;
}
function arrayIndexOf(array, item) {
  for (var i = 0; i < array.length; i++)
    if (array[i] == item) return i;
  return -1;
}
function autoBlurSearchBox(e) {
  var navkeys = new Array(32, 33, 34, 35, 36, 37, 38, 39, 40);
  if(!searchBoxUserKeyed) {
    if(arrayIndexOf(navkeys, e.keyCode) != -1) {
      var input = document.getElementById('query');
      input.blur();
      inputBlur(input);
    }else{
      var input = document.getElementById('query');
      input.focus();
    }
  }
  searchBoxUserKeyed = true;
  if (aa && !aaStartTag) {aa.start();aaStartTag=true;}
}
var tipFlag = true;
function changeProduct(p){
    var url = getSearchUrl("query", p, "163.index");
    window.open(url, "_parent");
    return false;
}
document.getElementById("query").focus();
</script>
<script type="text/javascript">
    function yclicklog(a, pos, action, ext1, ext2){
        var i = new Image();
        var time="&ts="+(new Date()).getTime();
        var ex1="", ex2="";
        if(ext1 && ext1!=null) ex1="&extend1="+encodeURIComponent(ext1);
        if(ext2 && ext2!=null) ex2="&extend2="+encodeURIComponent(ext2);
        if(a==null){i.src = '
http://www.youdao.com/smartresult/ctlog?url=null&pos='+pos+'&action='+action+time+ex1+ex2
;}
        else{i.src = '
http://www.youdao.com/smartresult/ctlog?url='+encodeURIComponent(a.href)+'&pos='+pos+'&action='+action+time+ex1+ex2
;}
        return true;
    }
    function inputBlur(e){
      focusFlag = false;
      var eValue=e.value.replace(/^\s*/,"").replace(/\s*$/,"");
      if (eValue=='') {
        e.style.color="#908f8f";
        e.style.height="19px";
        e.style.paddingTop="5px";
        e.style.font="13px '宋体',arial";
        setTimeout(function(){
          if(tipFlag == true && focusFlag == false) e.value=yodaoDefault;
        }, 125);
      }else{}
    }
</script>
<!-- 有道搜索结束 -->
<span class="blank9"></span>
<!-- 内容2 -->
<div class="area areaBg2 clearfix">
<!-- l -->
<div class="col1">
 <div  class="l_title_nobg">
 <h3 class="p_com">通讯</h3>
</div>
  <div class="productMain">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td style="width:80px;"><a
href="http://mail.163.com/";>163<http://mail.163.com/%22%3E163>
邮箱</a></td>
    <td><strong><a href="http://vip.163.com/";
class="cDRed">VIP收费邮箱</a></strong></td>
  </tr>
  <tr>
    <td style="width:80px;"><a href="
http://www.126.com/index.htm?from=163sy2";>126邮箱</a></td>
    <td><a 
href="http://www.yeah.net/index.htm?sy1";><spanclass="cDRed"><strong>Yeah邮箱</strong></span></a><img
src="
http://images.163.com/js/tx2_163.gif"; alt="icon" border="0" /></td>
  </tr>
  <tr class="endTd">
    <td style="width:80px;"><a
href="http://www.188.com/";>188<http://www.188.com/%22%3E188>
财富邮</a></td>
 <td><a href="http://qiye.163.com/";>网易企业邮箱</a></td>
    </tr>
</table>
  </div>
  <div  class="l_title_nobg">
 <h3 class="p_ent">娱乐</h3>
</div>
  <div class="productMain">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td style="width:80px;"><a href="http://xyq.163.com/";>梦幻西游</a></td>
    <td><a href="http://xy2.163.com/";>大话西游Ⅱ</a></td>
  </tr>
  <tr>
    <td style="width:80px;"><a
href="http://tx2.163.com";><span<http://tx2.163.com%22%3e%3cspan/>class="cDRed"><strong>天下贰</strong></span></a><img
src="
http://images.163.com/js/tx2_163.gif"; border="0" alt="icon" /></td>
    <td><a href="http://xy3.163.com/welcome?acctsn=WL22-2455-0599-92
">大话西游3</a></td>
  </tr>
  <tr>
    <td style="width:80px;"><a href="http://xyw.163.com/";
class="cDRed">大话外传</a><img src="http://images.163.com/js/tx2_163.gif";
border="0" alt="icon" /></td>
 <td><a href="http://ff.163.com/";>新飞飞</a></td>
    </tr>
  <tr class="endTd">
    <td style="width:80px;"><a
href="http://wow.163.com/";><span<http://wow.163.com/%22%3E%3Cspan>class="cDRed"><strong>魔兽世界</strong></span></a>
</td>
 <td><a href="http://sg.163.com/";>三国天下</a></td>
    </tr>
</table>
  </div>
  <div  class="l_title_nobg">
 <h3 class="p_ser">服务</h3>
</div>
  <div class="productMain">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td style="width:80px;"><a
href="http://blog.163.com/?fromService";>博客</a></td>
    <td><a href="http://photo.163.com/";>免费相册</a></td>
  </tr>
  <tr>
    <td style="width:80px;"><a href="http://alumni.163.com/";>同学录</a></td>
    <td><a href="http://love.163.com/club/";>恋爱交友</a></td>
  </tr>
  <tr class="endTd">
    <td style="width:80px;"><a href="http://card.163.com/";>贺卡</a></td>
    <td><a href="http://map.youdao.com/";>地图</a> </td>
  </tr>
</table>
  </div>
  <div  class="l_title_nobg">
 <h3 class="p_rec">推荐</h3>
</div>
  <div class="productMain">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td style="width:80px;"><a href="
http://pro.163.com/event.ng/Type=click&FlightID=147218&AdID=149315&TargetID=510&Values=31,43,51,60,72,84,90,100,110,150,312,330,332,457,515,583,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://cnnete.englishtown.com/Sp/LandingPage.aspx%3Fkwid%3D93529%26ctr%3Dcn%26lng%3Dcs%26etag%3DE13597FE";
class="cDRed">每日英语</a></td>
    <td><a href="http://www.gz2010.cn/";>亚运官网</a> <a href="
http://2010.163.com/";>频道</a></td>
  </tr>
  <tr class="endTd">
    <td style="width:80px;"><a href="http://help.3g.163.com/";>手机网易网</a></td>
    <td><a 
href="http://cidian.youdao.com/?vendor=163.index";><spanclass="cDRed"><strong>有道桌面词典</strong></span></a></td>
  </tr>
 </table>
  </div>
<div class="blankW6 r_TopLine"></div>
<!-- new message -->
<div class="newMessage">
<div class="title"><h3>最新消息</h3>
<div class="mail"><div style="clear:both;padding:3px 0 0
9px;text-align:left;"><a href="http://idj.163.com";>全民DJ</a></div>
</div>
</div>
<div class="list">
<ul>
<li><a href="http://www.89178.com/index_163.htm";>做别人没想到的<span
class="cDRed">生意</span> 图</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=95865&AdID=97314&TargetID=510&Values=31,43,51,60,72,82,100,110,312,330,332,515,588,702,733,734&Redirect=http://www.meilishan.com/
">东4环洋房本周6开盘</a></li>
<li><a href="http://survey2.163.com/html/dict_youdao/paper.html?site=web
">词典使用习惯调研</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=150600&AdID=152652&TargetID=510&Values=31,43,51,60,72,85,92,100,110,150,312,330,332,457,515,589,702,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://ent.163.com/09/0811/18/5GF3L35T000333J5.html
">小S热舞内衣照曝光</a></li>
<li><a href="http://gz.house.163.com/";>网易房产频道隆重上线</a></li>
<li><a href="http://www.wrating.com/survey/index.php?c=45
">答亚运问卷赢数码大奖</a></li>
</ul>
</div>
<div class="clear"></div>
</div>
<div class="blankW6 r_TopLine"></div>
  <div class="l_title" style="overflow:hidden">
 <div style="margin:0; padding:0; float:left;">
  <h3 style="color:#000000">有道热闻人物排行榜</h3>
 </div>
 <div style="margin:0; padding:0; float:right; height:23px;width:22px;">
   <div style="padding:0; float:left; height:100%; margin:6px 0 7px 0;">
      <a href="http://news.youdao.com"; target=_blank
style="text-decoration:none;" title="去有道热闻首页">
        <img src="
http://images4.cache.netease.com/yodaoimages/ht.r02/smallfireshort.gif";
width="14" height="15"  border="0" align="absmiddle">
      </a>
   </div>
 </div>
</div>
<div id="content_div1" style="border-bottom: medium none rgb(204, 204, 204);
padding: 0pt 4px; height:103px; overflow:hidden; overflow-y:hidden;"
class="l_bg1">
  <table bgcolor="#f7f7f7" border="0" cellpadding="0" cellspacing="0"
width="162">
    <tbody>
    <tr>
    <td align="left" width="49%" height="92"><table style="font-size: 12px;
margin-top:5px;" border="0" cellpadding="0" cellspacing="0" width="80">
    <tbody>
                                    <tr>         <td bgcolor="" width="12"
height="24"> </td>
         <td bgcolor="" align="left" width="50" height="24"><a
target="_blank" href="
http://news.youdao.com/top?keyfrom=163.index.hotstar&item=9f616bd2afd45712&q=%E9%85%92%E4%BA%95%E6%B3%95%E5%AD%90&pos=0
">酒井法子</a></td>
         <td bgcolor="" style="border-right: 1px solid rgb(230, 230, 230);"
align="left" valign="middle" height="24"><img src="
http://images4.cache.netease.com/yodaoimages/ht.r02/up.gif"; width="9"
height="11"></td>
         </tr>
                                      <tr>         <td bgcolor="#ecedef"
width="12" height="24"> </td>
         <td bgcolor="#ecedef" align="left" width="50" height="24"><a
target="_blank" href="
http://news.youdao.com/top?keyfrom=163.index.hotstar&item=d4f042902811fdf8&q=%E8%8C%83%E5%86%B0%E5%86%B0&pos=2
">范冰冰</a></td>
         <td bgcolor="#ecedef" style="border-right: 1px solid rgb(230, 230,
230);" align="left" valign="middle" height="24"><img src="
http://images4.cache.netease.com/yodaoimages/ht.r02/up.gif"; width="9"
height="11"></td>
         </tr>
                                      <tr>         <td bgcolor="" width="12"
height="24"> </td>
         <td bgcolor="" align="left" width="50" height="24"><a
target="_blank" href="
http://news.youdao.com/top?keyfrom=163.index.hotstar&item=4c47f7739e9bc722&q=%E5%B4%94%E4%B8%96%E5%AE%89&pos=4
">崔世安</a></td>
         <td bgcolor="" style="border-right: 1px solid rgb(230, 230, 230);"
align="left" valign="middle" height="24"><img src="
http://images4.cache.netease.com/yodaoimages/ht.r02/new1.gif"; width="9"
height="11"></td>
         </tr>
                                      <tr>         <td bgcolor="#ecedef"
width="12" height="24"> </td>
         <td bgcolor="#ecedef" align="left" width="50" height="24"><a
target="_blank" href="
http://news.youdao.com/top?keyfrom=163.index.hotstar&item=f07a233835421156&q=%E6%9D%B0%E5%85%8B%E9%80%8A&pos=6
">杰克逊</a></td>
         <td bgcolor="#ecedef" style="border-right: 1px solid rgb(230, 230,
230);" align="left" valign="middle" height="24"><img src="
http://images4.cache.netease.com/yodaoimages/ht.r02/up.gif"; width="9"
height="11"></td>
         </tr>
              </tbody>
  </table></td>
  <td align="right" width="49%"><table style="font-size: 12px;
margin-top:5px;" border="0"
      cellpadding="0" cellspacing="0" width="80"><tbody>
                               <tr>          <td bgcolor="" width="12"
height="24"> </td>
         <td bgcolor="" align="left" width="50" height="24"><a
target="_blank" href="
http://news.youdao.com/top?keyfrom=163.index.hotstar&item=9b32e44f7522aa0f&q=%E7%AB%A0%E5%AD%90%E6%80%A1&pos=1
">章子怡</a></td>
         <td bgcolor="" align="left" valign="middle" height="24"><img src="
http://images4.cache.netease.com/yodaoimages/ht.r02/down.gif"; width="9"
height="11"></td>
         </tr>
                                      <tr>          <td bgcolor="#ecedef"
width="12" height="24"> </td>
         <td bgcolor="#ecedef" align="left" width="50" height="24"><a
target="_blank" href="
http://news.youdao.com/top?keyfrom=163.index.hotstar&item=fc2382d81581c3e5&q=%E5%8D%93%E7%90%B3&pos=3
">卓琳</a></td>
         <td bgcolor="#ecedef" align="left" valign="middle" height="24"><img
src="http://images4.cache.netease.com/yodaoimages/ht.r02/new1.gif"; width="9"
height="11"></td>
         </tr>
                                      <tr>          <td bgcolor=""
width="12" height="24"> </td>
         <td bgcolor="" align="left" width="50" height="24"><a
target="_blank" href="
http://news.youdao.com/top?keyfrom=163.index.hotstar&item=69889fac4eb64ab3&q=%E9%83%8E%E5%B9%B3&pos=5
">郎平</a></td>
         <td bgcolor="" align="left" valign="middle" height="24"><img src="
http://images4.cache.netease.com/yodaoimages/ht.r02/new1.gif"; width="9"
height="11"></td>
         </tr>
                                      <tr>          <td bgcolor="#ecedef"
width="12" height="24"> </td>
         <td bgcolor="#ecedef" align="left" width="50" height="24"><a
target="_blank" href="
http://news.youdao.com/top?keyfrom=163.index.hotstar&item=e51d2f11b93c3944&q=%E5%AE%8B%E6%85%A7%E4%B9%94&pos=7
">宋慧乔</a></td>
         <td bgcolor="#ecedef" align="left" valign="middle" height="24"><img
src="http://images4.cache.netease.com/yodaoimages/ht.r02/up.gif"; width="9"
height="11"></td>
         </tr>
               </tbody></table></td>
    </tr>
  </tbody></table>
</div>
</div>
<!-- r -->
<div class="col2">
<div class="S_ad775">
<iframe id="iframe_banner1" name="iframe_banner1" src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=column&location=1";
width="775" height="90" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe>
</div>
<div class="blankW9"></div>
<!-- r1 -->
<div class="col2A areaBg2_m">
<div class="menu_Four_Tab" id="tabzero">
<ul>
<li class="active"><a href="http://news.163.com/"; urn="#default_news"
rel="zeroarea">新闻</a></li>
<li class="normal"><a href="http://news.163.com/photo/";
urn="/special/00772H4S/to163photo.html" rel="zeroarea">图片</a></li>
<li class="normal"><a href="http://news.163.com/";
urn="/special/00772H4S/focus0726.html" rel="zeroarea">锐点</a></li>
<li class="normal"><a href="http://blog.163.com/?163toutiao";
urn="/special/00772H4S/news_middle_4.html" rel="zeroarea">博客</a></li>
</ul>
</div>
<div class="midContent" id="zeroarea">
<div class="colLeft">
<div class="pic">
  <a 
href="http://news.163.com/09/0812/06/5GGC5ECH000120GR.html";><img<http://news.163.com/09/0812/06/5GGC5ECH000120GR.html%22%3E%3Cimg>src="
http://img1.cache.netease.com/cnews/2009/8/12/20090812083444df762.jpg";
alt="四川汉源大渡河壅塞体爆破" width="160" height="120" border="0" /></a>
  <a href="http://news.163.com/09/0812/06/5GGC5ECH000120GR.html";
class="tip">四川汉源大渡河壅塞体爆破</a>
</div>
<div class="listText">
<a href="http://news.163.com/review/"; class="cBlue">★网易评论</a><br />
<a 
href="http://news.163.com/special/00012Q9L/haizirenquan090812.html";>父母是孩子人权的最大威胁</a><br
/>
<a 
href="http://news.163.com/09/0812/07/5GGGHTMG00012Q9L.html";>良知如何面对11名重庆民工</a><br
/>
<a href="http://focus.news.163.com/"; class="cBlue">★深度报道</a><br />
<a 
href="http://focus.news.163.com/09/0812/09/5GGNFPQE00011SM9.html";>"网瘾"少年的"死亡训练"</a><br
/>
<a href="http://war.news.163.com/special/00013GC3/60years.html";
class="cBlue">★网易阅兵</a><br />
<a 
href="http://war.news.163.com/09/0811/13/5GEHSU4L00011232.html";>第16期:052C型防空驱逐舰</a><br
/>
<a href="http://news.163.com/madeinchina/"; class="cBlue">★中国制造</a><br />
<a 
href="http://news.163.com/special/00013D42/1960zsje.html";><em<http://news.163.com/special/00013D42/1960zsje.html%22%3E%3Cem>class='cDRed'>1960年:中苏关系</em></a><br
/>
</div>
<!-- 地方下 -->
<a href="
http://pro.163.com/event.ng/Type=click&FlightID=144154&AdID=146179&TargetID=510&Values=31,43,51,60,72,84,90,100,110,150,312,330,332,457,515,582,733,734,788&Redirect=http://www.k6.cn/ZT/Fetal/fetal.html%3FSourceID%3D245";
style="margin: 5px 0 0 0;clear:both;display:block; color: rgb(31, 58,
135);">[15年了她还是那么年轻]</a>
</div>
<div class="colRight">
<h2><a href="http://news.163.com/09/0812/00/5GFOMM0G0001124J.html
">检方批捕胡士泰等力拓4员工</a></h2>
<div class="list">
<ul>
<li><a 
href="http://news.163.com/special/00013JTE/molakelaixi.html";>莫拉克已致大陆5省1103万人受灾</a>
<a href="http://news.163.com/09/0811/23/5GFKL3FU0001124J.html
">台湾62死</a></li>
<li><a 
href="http://news.163.com/09/0812/10/5GGR69GQ0001124J.html";>7<http://news.163.com/09/0812/10/5GGR69GQ0001124J.html%22%3E7>月全国财政收入同比增长10.2%</a>
<a href="http://money.163.com/special/00253K3K/07date.html";>专题</a></li>
<li><a href="http://news.163.com/09/0812/09/5GGP97FU0001124J.html
">公安部:醉驾者将纳入银行个人不良记录</a></li>
<li><a href="http://news.163.com/09/0812/08/5GGL0J4U0001124J.html
">重庆长寿以扩建中学为名征地建政府大楼</a></li>
<li><a href="http://news.163.com/09/0812/01/5GFTF2KD000120GR.html
">杭州局级干部不领车贴重用公车引质疑</a></li>
</ul>
<ul  class="line">
<li><a href="http://money.163.com/09/0812/04/5GG6H3LA00251LIE.html";>居民存款近2年首度负增长
资金搬家入市</a></li>
<li><a href="http://sports.163.com/special/00053K9I/lpback.html";>郎平年薪至少500万</a>
<a href="http://sports.163.com/09/0812/09/5GGN7JCA00051CAQ.html
">名宿:郎平"品牌"值这个价</a></li>
<li><a href="http://ent.163.com/09/0812/03/5GG1P7KV00032KMI.html
">谢晋遗孀:要一棒子“打死”宋祖德(独家)</a></li>
</ul>
<ul  class="line">
<li><a href="http://news.163.com/09/0812/08/5GGLF99Q0001124J.html
">南京一国企被指遭管理层以零元价格私吞</a></li>
<li><a href="http://news.163.com/09/0812/01/5GFSQHOI000120GR.html
">部分省市疑因补碘过量致甲状腺病剧增</a></li>
<li><a 
href="http://news.163.com/09/0812/04/5GG6IBOK00011229.html";><em<http://news.163.com/09/0812/04/5GG6IBOK00011229.html%22%3E%3Cem>class='I_V_'>浙江丽水一老板涉嫌强奸14名女中学生受审</em></a></li>
<li><a href="http://news.163.com/09/0812/05/5GGB22820001124J.html
">郑州经适房建别墅续:五部门管不住一个开发商</a></li>
<li><a href="http://news.163.com/09/0812/09/5GGMI7FH0001124J.html
">环球时报:美民主基金会扶植热比娅反华</a></li>
</ul>
</div>
<div class="more">
<span><a href="http://news.163.com/";>进入新闻中心</a></span>
<span style="background:none; color:#1f3a87;float:left;"><a href="
http://pro.163.com/event.ng/Type=click&FlightID=149330&AdID=151392&TargetID=510&Values=31,43,51,60,72,82,92,100,110,150,312,330,332,453,515,589,618,702,733,734,942,943,944,948,949,950,951,1003,1125,1129,1135&Redirect=http://m.zdface.com/gourl0804.asp%3Furl%3D21%26market%3D080421
">[热点:黑头是草莓鼻真凶]</a></span>
</div>
</div>
</div>
<div class="blankW9 r_TopLine"></div>
<div><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo460x140&location=1";
width="460" height="140" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></div>
</div>
<!-- r2 -->
<div class="col2B">
<div><iframe id="iframe_banner2" name="iframe_banner2" src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo300120&location=1";
width="300" height="120" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no"></iframe></div>
<span class="blankW6"></span>
<div><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo300x50&location=1";
width="300" height="50" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></div>
<span class="blankW6"></span>
<div class="r_menu_Five_Tab">
<ul id="adMenu">
<li class="normal active"><a urn="#default_Info" rel="adListContent1"
class="tip">资讯</a></li>
<li class="normal"><a href="
http://pro.163.com/event.ng/Type=click&FlightID=149329&AdID=151391&TargetID=510&Values=31,43,51,60,72,85,100,110,150,312,330,332,459,515,588,620,702,733,734,942,943,944,948,949,950,951,1006,1125,1129,1131,1135,1168&Redirect=http://popme.163.com/link/005975_0724_8411.html";
urn="adList_Edu" rel="adListContent1" class="tip">护肤</a></li>
<li class="normal"><a href="http://house.163.com/"; urn="adList_House"
rel="adListContent1" class="tip">房产</a></li>
<li class="normal"><a urn="adList_Bnz" rel="adListContent1"
class="tip">招商</a></li>
<li class="normal"><a urn="adList_Kfc" rel="adListContent1"
class="tip">教育</a></li>
</ul>
</div>
<div class="rightContent r_h1" id="adMenuContent">
<div id="adListContent1" class="normal active">
<div class="list">
<ul>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=147260&AdID=149357&TargetID=510&Values=31,43,51,60,72,85,100,110,150,312,330,332,457,515,588,702,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://a899.oadz.com/link/C/899/133/ZwwQeWhBeCNSO5nVWHGiDvtQIC4_/007/7%3Fhttp://auto.163.com/09/0807/15/5G4GK68H00081G98.html";>越级奔腾B50
1.6L之王</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=147186&AdID=149283&TargetID=510&Values=31,43,51,60,72,81,91,100,110,150,312,330,332,453,515,587,618,702,733,734,942,943,944,948,949,950,951,1003,1123,1135&Redirect=http://g.miaozhen.com/r.gif%3Fa%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%3D%255Ek%3D288%255Ep%3D-K61%255Eo%3Dhttp://www.wlj-xzq.com/
">“学子情”迎来第九年</a></li>
<li><a href="http://gz.house.163.com/";>网易房产频道隆重上线</a></li>
<li><a href="http://activity.vip.163.com/gz/showIndex.m?form=sydfeg1
">晒高效秘诀拿车载导航</a></li>
<li><a href="http://mail.blog.163.com/blog/static/82209424200971052233755/
">网易邮箱新增10项功能</a></li>
<li><a href="http://www.wrating.com/survey/index.php?c=45
">答亚运问卷赢数码大奖</a></li>
</ul>
</div>
<div class="list">
<ul>
<li><a 
href="http://www.89178.com/index_163zx.htm";>09<http://www.89178.com/index_163zx.htm%22%3E09>年打工不如自己<span
class="cDRed">开店</span></a></li>
<li><a href="http://sg.163.com/fab/";>三国天下开放测试中</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=111729&AdID=113136&TargetID=529&Values=31,43,51,60,72,83,91,100,110,150,312,316,332,355,409,457,594,702,733,734,774,776,788,942,943,944,948,949,950,951,1004&Redirect=http://a.youdao.com
">推广有效,就用有道</a></li>
<li><a href="http://sg.163.com/fab/";>问天下谁是英雄?</a></li>
<li><a href="http://survey2.163.com/html/dict_youdao/paper.html?site=web
">词典使用习惯调研</a></li>
<li><a href="http://help.3g.163.com/stock/";>手机看股票每日涨停</a></li>
</ul>
</div>
</div>
<div id="adList_Edu" class="normal">
<style type="text/css">
.rightContent .listldj1{float:left; width:148px;
display:inline;overflow:hidden;}
.rightContent .listldj1 ul{padding-left:4px; }
.rightContent .listldj1 li{ clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 12px -37px no-repeat;
text-align:left; padding:0 0 0 18px; line-height:20px;}
.rightContent .listldj2{float:left; width:156px;
display:inline;overflow:hidden;}
.rightContent .listldj2 ul{padding-left:2px;  }
.rightContent .listldj2 li{ clear:both; background:url(
http://img1.cache.netease.com/cnews/netease/bg1.gif) 8px -37px no-repeat;
text-align:left; padding:0 0 0 15px; line-height:20px;}
.rightContent .listldj2 span{clear:both;
font-size:16px;line-height:20px;font-family:'黑体';color:#000;}
</style>
<div class="listldj1">
<ul>
<a href="
http://pro.163.com/event.ng/Type=click&FlightID=149325&AdID=151388&TargetID=510&Values=31,43,51,60,72,81,91,100,110,150,312,330,332,457,515,586,702,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://m.zdface.com/1630810.asp%3Furl%3D1%26mark%3D10001";><img<http://pro.163.com/event.ng/Type=click&FlightID=149325&AdID=151388&TargetID=510&Values=31,43,51,60,72,81,91,100,110,150,312,330,332,457,515,586,702,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://m.zdface.com/1630810.asp%3Furl%3D1%26mark%3D10001%22%3E%3Cimg>src="
http://img1.126.net/channel7/005975/zhuangdian141100_090810_1.jpg"; alt="pic"
width="142" height="100" border="0" /></a>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=149439&AdID=151497&TargetID=510&Values=31,43,51,60,72,81,91,100,110,150,312,330,332,457,515,586,702,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://m.zdface.com/1630810.asp%3Furl%3D1%26mark%3D10001
">当红6大女星丰胸内幕</a></li>
</ul>
</div>
<div class="listldj1">
<ul>
<a href="
http://pro.163.com/event.ng/Type=click&FlightID=149327&AdID=151389&TargetID=510&Values=31,43,51,60,72,81,91,100,110,150,312,330,332,457,515,586,702,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://m.zdface.com/1630810.asp%3Furl%3D2%26mark%3D10002";><img<http://pro.163.com/event.ng/Type=click&FlightID=149327&AdID=151389&TargetID=510&Values=31,43,51,60,72,81,91,100,110,150,312,330,332,457,515,586,702,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://m.zdface.com/1630810.asp%3Furl%3D2%26mark%3D10002%22%3E%3Cimg>src="
http://img1.126.net/channel7/005975/zhuangdian141100_090810_2.jpg"; alt="pic"
width="142" height="100" border="0" /></a>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=149440&AdID=151498&TargetID=510&Values=31,43,51,60,72,81,91,100,110,150,312,330,332,457,515,586,702,733,734,788,942,943,944,948,949,950,951,1004,1123,1131,1135,1168&Redirect=http://m.zdface.com/1630810.asp%3Furl%3D2%26mark%3D10002
">看完保你能下决心减肥</a></li>
</ul>
</div>
</div>

<div id="adList_House" class="normal"><div class="list">
<ul>
<div><a href="
http://pro.163.com/event.ng/Type=click&FlightID=106887&AdID=108345&TargetID=510&Values=31,43,51,60,72,86,101,110,312,330,332,515,584,733,734,1004&Redirect=http://www.foloda.com/";><img<http://pro.163.com/event.ng/Type=click&FlightID=106887&AdID=108345&TargetID=510&Values=31,43,51,60,72,86,101,110,312,330,332,515,584,733,734,1004&Redirect=http://www.foloda.com/%22%3E%3Cimg>src="
http://img1.126.net/channel7/house/fld14560_090728.jpg"; alt="pic"
width="145" height="60" border="0" /></a></div>
<li><a href="
http://adclient.163.com/event.ng/Type=click&FlightID=94931&AdID=96409&TargetID=510&Values=31,43,51,60,72,82,90,100,110,312,330,332,515,583,733,734&Redirect=http://cgc.bj.cn/
">中央影视城旁滨水别墅</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=94932&AdID=96410&TargetID=510&Values=31,43,51,60,72,82,90,100,110,312,330,332,515,583,733,734&Redirect=http://www.elephant-parade.com/";>高端网站建设
大象群</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=94933&AdID=96411&TargetID=510&Values=31,43,51,60,72,82,90,100,110,312,330,332,515,583,733,734&Redirect=http://bj.home.163.com/hunfang.html
">婚房装修频道火热上线</a></li>
</ul>
</div>
<div class="list">
<ul>
<div><a href="
http://pro.163.com/event.ng/Type=click&FlightID=94934&AdID=96412&TargetID=510&Values=31,43,51,60,72,82,90,100,110,312,330,332,515,583,733,734&Redirect=http://bj.house.163.com/news2/090727/264/586661-1.shtml";><img<http://pro.163.com/event.ng/Type=click&FlightID=94934&AdID=96412&TargetID=510&Values=31,43,51,60,72,82,90,100,110,312,330,332,515,583,733,734&Redirect=http://bj.house.163.com/news2/090727/264/586661-1.shtml%22%3E%3Cimg>src="
http://img1.126.net/channel7/house/nandaihe14560_090803.jpg"; alt="pic"
width="145" height="60" border="0" /></a></div>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=94937&AdID=96415&TargetID=510&Values=31,43,51,60,72,82,90,100,110,312,330,332,515,583,733,734&Redirect=http://house.163.com/topic/cd/sjzwdgc/";>办公
生活的理想之地</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=94938&AdID=96416&TargetID=510&Values=31,43,51,60,72,82,90,100,110,312,330,332,515,583,733,734&Redirect=http://cd.house.163.com/topic/cd/lgzx11/
">蓝光扶助贫困大学生</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=94939&AdID=96417&TargetID=510&Values=31,43,51,60,72,82,90,100,110,312,330,332,515,583,733,734&Redirect=http://hz.house.163.com/topic/cd/hzthy/taotu.htm";>夏之邀约
醉美桃花源</a></li>
</ul>
</div></div>
<div id="adList_Bnz"  class="normal"><div class="list">
<ul>
<li><a href="http://chengxin.163.com";>网易启动诚信邮件联盟</a></li>
<li><a href="http://yxp.163.com/photo/ep.html?09325yxp1";>全国最低价网上冲印</a></li>
<li><a href="http://mail.blog.163.com/blog/static/8220942420096267394738/
">闪电邮1.1版提速9倍</a></li>
<li><a href="http://help.3g.163.com/";>手机上网易看快女PK</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=111729&AdID=113136&TargetID=529&Values=31,43,51,60,72,83,91,100,110,150,312,316,332,355,409,457,594,702,733,734,774,776,788,942,943,944,948,949,950,951,1004&Redirect=http://a.youdao.com
">推广有效,就用有道</a></li>
<li><a href="http://nie.163.com/news/2009/8/6/440_203791.html
">新游戏调查中奖名单</a></li>
</ul>
</div>
<div class="list">
<ul>
<li><a href="
http://hr.163.com/special/00813A60/recruitment0407.html?455555#pc2
">网易招聘WEB工程师</a></li>
<li><a href="http://xyq.163.com/xyq?acctsn=MH22-2128-3554-7248
">和他一起做最浪漫的事</a></li>
<li><a href="http://sdy.163.com/sdy_news.htm";>一秒闪电转发网易新闻</a></li>
<li><a href="http://bbx.mail.163.com/assistant/mailbox.jsp?product=comic
">丑女无敌入驻网易邮箱</a></li>
<li><a href="http://mail.blog.163.com/blog/static/82209424200971052233755/
">网易邮箱新增10项功能</a></li>
<li><a href="http://survey3.net-research.cn/survey/357/yindao.html
">互联网络品牌调查</a></li>
</ul>
</div></div>
<div id="adList_Kfc" class="normal">
<div class="list">
<ul>
<li><a href="http://yxp.163.com/?sss=fromscbzx624";>自己做最特别的礼物</a></li>
<li><a href="http://survey2.163.com/html/dict_youdao/paper.html?site=web
">词典使用习惯调研</a></li>
<li><a href="http://mail.blog.163.com/blog/static/82209424200971052233755/
">网易邮箱新增10项功能</a></li>
<li><a href="http://nie.163.com/news/2009/8/6/440_203791.html
">新游戏调查中奖名单</a></li>
</ul>
</div>
<div class="list">
<ul>
<li><a href="http://bbx.mail.163.com/assistant/mailbox.jsp?product=comic
">快来围观刘德华儿子</a></li>
<li><a href="http://activity.vip.163.com/gz/showIndex.m?form=sydfeg1
">晒高效秘诀拿车载导航</a></li>
<li><a href="http://survey3.net-research.cn/survey/357/yindao.html
">互联网络品牌调查</a></li>
<li><a href="http://bbs.gz.house.163.com/";>林志玲控诉豪宅被偷窥</a></li>
</ul>
</div>
<div><a href="
http://allyesszafa.allyes.com/main/adfclick?db=allyesszafa&bid=13848,6884,463&cid=7022,1092,1&sid=15889&show=ignore&url=http://lady.163.com/mideajxc/";><imgsrc="
http://img1.126.net/channel5/005818/homepage29740_090810.gif"; alt="pic"
width="296" height="40" border="0" /></a></div>
</div>



</div>
<div class="blankW6 r_TopLine"></div>
<!--博客begin-->
<style>
.rightBlog{height:160px;overflow:hidden;text-align:left;}
/*.rightBlog .list2 li{padding:2px 0px 1px;margin:0px;}*/
.rightBlog .list ul{padding-top:3px;}
.rightContent .list4{padding:3px 0px 4px
0px;padding-left:10px;width:290px;clear:both;text-align:left;line-height:18px;}
.rightContent .list4 span{color:#cbcbcb;margin-left:3px;}
.rightContent .hit{text-align:left;padding:2px 8px 0;line-height:20px;}
.rightContent .hit span{padding:0 15px;}
.rightContent h4{font-family: "黑体" ,Arial
Black,sans-serif;font-weight:100;font-size:18px;padding:11px 0 0;clear:both;
text-align:;}
.rightContent .picitem{padding:15px 0 0 10px;float:left;}
.rightContent .picitem img{float:left;border:1px solid
#cbcbcb;display:block;padding:1px;}
.rightContent .picitem
.info{float:left;text-align:left;padding-left:10px;width:188px;height:85px!important;height:95px;}
.rightContent .picitem .info .tit{font-size:14px;line-height:28px;}
.rightContent .picitem .info
p{text-indent:2em;padding:0;margin:0;line-height:20px;}
.rightContent .picitem2{padding:8px 0 0 6px;float:left;}
.rightContent .picitem2 img{float:left;border:1px solid
#cbcbcb;display:block;padding:1px;}
.rightContent .picitem2
.info{float:left;text-align:left;padding-left:3px;width:96px;line-height:20px;}
.rightContent .picitem2 .info .clr{margin-top:5px;}
.rightContent .picitem2 .info .clr
a{display:block;float:left;padding-left:20px;}
.rightContent .picitem2 .info .clr .s1{background:url(
http://st.blog.163.com/pub/newIndex/images/listen.gif) no-repeat 3px
3px;margin-right:3px;}
.rightContent .picitem2 .info .clr .s2{background:url(
http://st.blog.163.com/pub/newIndex/images/add.gif) no-repeat 2px 2px;}
.box{line-height:26px;padding-top:2px;border-bottom:0;}
.rightContent .list_act{padding:0px 0px 11px 0px;}
.rightContent .pic_act{padding:12px 0 0
10px;float:left;height:94px;overflow:hidden;text-overflow:ellipsis;}
.rightContent .pic_act img{float:left;border:1px solid
#cbcbcb;display:block;padding:1px;}
.rightContent .pic_act
.info{float:left;text-align:left;padding-left:10px;line-height:20px;width:180px;}
.rightContent .pic_act .info
.tit{display:block;width:97%;white-space:nowrap;overflow:hidden;word-break:break-all;text-overflow:ellipsis;}
.rightContent .pic_act .info p{padding:4px 0px
0px;margin:0px;text-indent:2em;height:60px;overflow:hidden;text-overflow:ellipsis;position:relative;zoom:1;}
.rightContent .pic_act .info p
.a_more{position:absolute;bottom:0px;right:0px;background-color:#fff;}
.area_blog{position:relative;zoom:1;}
.area_blog
.hide{white-space:nowrap;overflow:hidden;word-break:break-all;_width:100%;text-overflow:ellipsis;}
.area_blog .list
li{width:125px;white-space:nowrap;overflow:hidden;word-break:break-all;}
.area_blog .list_blogs li{width:auto;}
.area_blog .list2{text-align:left;line-height:19px;}
.area_blog .list2
.li{width:270px;white-space:nowrap;overflow:hidden;word-break:break-all;padding:2px
5px 1px 6px;text-overflow:ellipsis;}
.area_blog
.list4{position:absolute;bottom:0px;left:0px;text-align:left;padding:0px 0px
0px 10px;}
#blogs_hot {clear:both; line-height:21px; padding:2px 0; border-top:1px
solid #ccc;}
#blog_blogs .iconTip{text-align:center;}
#cityshowusersUL {margin:0 0 0 6px; height:62px; }
.rightContent .pic_frd{padding:8px 0 0
6px;float:left;overflow:hidden;text-overflow:ellipsis;}
.rightContent .pic_frd img{float:left;display:block;padding:1px;margin:1px;}
.rightContent .pic_frd img.big{border:1px solid #cbcbcb;}
.rightContent .pic_frd
.info{float:left;text-align:left;padding-left:10px;line-height:18px;width:130px;}
.rightContent .pic_frd .info
.tit{display:block;font-size:14px;font-weight:700;margin-bottom:5px;width:97%;white-space:nowrap;overflow:hidden;word-break:break-all;text-overflow:ellipsis;}
</style>
 <div class="r_bg1">
<div class="r_menu_Five_Tab" id="blogMenu">
        <ul>
         <li class="active"><h6><a href="
http://blog.163.com/?from163homeblog"; urn="#default_blogs"
rel="blogServiceList">博客</a></h6></li>
         <li class="normal"><h6><a href="http://q.163.com/?from163homecircle";
urn="blog_circle" rel="blogServiceList">圈子</a></h6></li>
         <li class="normal"><h6><a href="
http://mp3.163.com/?from163homemusic"; urn="blog_music"
rel="blogServiceList">音乐</a></h6></li>
         <li class="normal"><h6><a href="
http://club.163.com/?from163homeclub"; urn="blog_club"
rel="blogServiceList">社区</a></h6></li>
         <li class="normal"><h6><a href="
http://huodong.163.com/?from163homeblog"; urn="blog_act"
rel="blogServiceList">活动</a></h6></li>
        </ul>
      </div>
      <div id="blogServiceList" class="rightContent r_bg1  rightLine1
rightHeight1 rightBlog area_blog">
       <!-- 博客 -->
<div class="rightContent" id="blog_blogs">
<div class="r_text">
<h2><a class="cBlack" href="
http://yxs19840602.blog.163.com/blog/static/1198465742009711937466/
"><新宿事件>,中国人在日本真实写照</a></h2>
<div class="blank3"></div>
<p>中国人在日本身份特殊,歧视常常来自中国人自己.</p>
<div class="blank3"></div>
</div>
<div class="list">
<ul>
<li><a href="
http://blog.163.com/cui_weiping/blog/static/11363628320097119914756/
">良心并非都是正确的</a></li>
<li><a href="
http://zhagnchunxia.blog.163.com/blog/static/86560498200971101330875/
">在台湾感受台风莫拉克</a></li>
<li><a href="
http://blog.163.com/luweibing@yeah/blog/static/118817055200971194854456/
">司马迁笔下最悲情刺客</a></li>
<li><a href="
http://hezi0601.blog.163.com/blog/static/114536283200971005016377/
">如果有人骂你长得丑…</a></li>
<li><a href="
http://kexuesongshuhui.blog.163.com/blog/static/93596567200971123737351/
">飞机是最安全的?</a></li>
</ul>
</div>
<div class="list">
<ul>
<li><a href="
http://blog.163.com/vip_chengqingsong/blog/static/1008166802009710115824123/
">中国电影在饮鸩止渴</a></li>
<li><a href="
http://dupinjournal.blog.163.com/blog/static/11522624120097111010467/
">诗人的等级高于散文家</a></li>
<li><a href="http://sw0048.blog.163.com/blog/static/12131024820097109273940/
">马屁诗引发的是是非非</a></li>
<li><a href="
http://stephenofdallas.blog.163.com/blog/static/11847300820097732652430/
">美国到底有什么好?</a></li>
<li><a href="
http://blog.163.com/snowswords@yeah/blog/static/121439140200971053114514/
">雪珥:大清国的"猪流感"</a></li>
</ul>
</div>
</div>
<!-- 圈子 -->
<!-- 圈子 -->
  <div id="blog_circle" style="display: none;">
          <div class="list2">
             <div class="li"><a href="
http://q.163.com/496160142/poster/8949352/";><span>1.</span<http://q.163.com/496160142/poster/8949352/%22%3E%3Cspan%3E1.%3C/span>>保证书
至 YY from QI</a></div>
 <div class="li"><a href="
http://q.163.com/yiqit/poster/8949093/";><span>2.</span<http://q.163.com/yiqit/poster/8949093/%22%3E%3Cspan%3E2.%3C/span>
>这样的家你敢梦想吗?</a></div>
 <div class="li"><a href="
http://q.163.com/yiqit/poster/8950014/";><span>3.</span<http://q.163.com/yiqit/poster/8950014/%22%3E%3Cspan%3E3.%3C/span>
>看这个图片10秒钟,会有想不到的结果。。</a></div>
 <div class="li"><a href="
http://q.163.com/496160142/poster/8923999/";><span>4.</span<http://q.163.com/496160142/poster/8923999/%22%3E%3Cspan%3E4.%3C/span>
>最近你会被谁欺负</a></div>
 <div class="li"><a href="
http://q.163.com/496160142/poster/8952107/";><span>5.</span<http://q.163.com/496160142/poster/8952107/%22%3E%3Cspan%3E5.%3C/span>
>用什么方法来忘记一个人是最好的也是最快的</a></div>
         </div>
   <div class="list4">
      <div class="hide">热门讨论区:
                 <a href="http://q.163.com/huodongquanzi/forum/
">网易博客官方活动圈</a><span>|</span>
 <a href="http://q.163.com/yiqit/forum/";>一起贴</a><span>|</span>
 <a href="http://q.163.com/han6feng/forum/";>〖时尚吧〗</a>
</div>
     <div class="hide">
      今日人气圈:
                 <a href="http://q.163.com/yiqit";>一起贴</a><span>|</span>
 <a href="http://q.163.com/han6feng";>〖时尚吧〗</a><span>|</span>
 <a href="http://q.163.com/dfbosheng";>东方博声乐园</a>
        </div>
    </div>
        </div>
<!-- 圈子 -->
<!-- 音乐 -->
  <!-- 音乐 -->
  <div id="blog_music"  style="display: none;">
   <div>


    <div class="picitem2">
       <a href="
http://blog.163.com/music_admin/music/entry/fks_082068080085082066085094074075081084082069081094086/";><img<http://blog.163.com/music_admin/music/entry/fks_082068080085082066085094074075081084082069081094086/%22%3E%3Cimg>src="
http://img.bimg.126.net/photo/-DkfNQeU25OxbAqzUPnaKw==/915919574216944728.jpg";
width="38px" height="38px"/></a>
    <div class="info">
     <a href="
http://blog.163.com/music_admin/music/entry/fks_082068080085082066085094074075081084082069081094086/
">天籁之音从此永恒</a>
        <div class="clr"><a class="s1" href="#" onclick="listenMusic('
http://blog.163.com/music_admin/m/?t=0&aid=fks_082068080085082066085094074075081084082069081094086');returnfalse;">试听</a></div>
    </div>
    </div>


    <div class="picitem2">
       <a href="
http://blog.163.com/yanyan860813/music/entry/fks_082068084082089067081083074066084080081068083086081074/";><img<http://blog.163.com/yanyan860813/music/entry/fks_082068084082089067081083074066084080081068083086081074/%22%3E%3Cimg>src="
http://img.bimg.126.net/photo/Bpo6SFAvfumeMxRbOqrifw==/4008766618314034320.jpg";
width="38px" height="38px"/></a>
    <div class="info">
     <a href="
http://blog.163.com/yanyan860813/music/entry/fks_082068084082089067081083074066084080081068083086081074/
">多出来的自由</a>
        <div class="clr"><a class="s1" href="#" onclick="listenMusic('
http://blog.163.com/yanyan860813/m/?t=0&aid=fks_082068084082089067081083074066084080081068083086081074');returnfalse;">试听</a></div>
    </div>
    </div>


    <div class="picitem2">
       <a href="
http://blog.163.com/runjinz/music/entry/fks_082068085082084067086087074066086086082071084086084065/";><img<http://blog.163.com/runjinz/music/entry/fks_082068085082084067086087074066086086082071084086084065/%22%3E%3Cimg>src="
http://img.bimg.126.net/photo/MFR930YH0kGLbaVPkfmGbg==/3443846340055784994.jpg";
width="38px" height="38px"/></a>
    <div class="info">
     <a href="
http://blog.163.com/runjinz/music/entry/fks_082068085082084067086087074066086086082071084086084065/";>BY2</a<http://blog.163.com/runjinz/music/entry/fks_082068085082084067086087074066086086082071084086084065/%22%3EBY2%3C/a>
>
        <div class="clr"><a class="s1" href="#" onclick="listenMusic('
http://blog.163.com/runjinz/m/?t=0&aid=fks_082068085082084067086087074066086086082071084086084065');returnfalse;">试听</a></div>
    </div>
    </div>


    <div class="picitem2">
       <a href="
http://blog.163.com/mr.long.y/music/entry/fks_082069093095085067087095074066086086081066087086081068/";><img<http://blog.163.com/mr.long.y/music/entry/fks_082069093095085067087095074066086086081066087086081068/%22%3E%3Cimg>src="
http://img.bimg.126.net/photo/LK9kjCW4_cjyFQXi9Dt70A==/4837710424726522585.jpg";
width="38px" height="38px"/></a>
    <div class="info">
     <a href="
http://blog.163.com/mr.long.y/music/entry/fks_082069093095085067087095074066086086081066087086081068/";>Free</a<http://blog.163.com/mr.long.y/music/entry/fks_082069093095085067087095074066086086081066087086081068/%22%3EFree%3C/a>
>
        <div class="clr"><a class="s1" href="#" onclick="listenMusic('
http://blog.163.com/mr.long.y/m/?t=0&aid=fks_082069093095085067087095074066086086081066087086081068');returnfalse;">试听</a></div>
    </div>
    </div>
    <div class="clear"></div>
   </div>
    <div class="list4">
      音乐达人:
      <a href="
http://htlkisshappy.blog.163.com/";>htlkisshappy</a><span>|</span<http://htlkisshappy.blog.163.com/%22%3Ehtlkisshappy%3C/a%3E%3Cspan%3E%7C%3C/span>
>
      <a 
href="http://dingdang82828.blog.163.com/";>dingdang</a><span>|</span<http://dingdang82828.blog.163.com/%22%3Edingdang%3C/a%3E%3Cspan%3E%7C%3C/span>
>
      <a href="http://sxczfhx.blog.163.com/";>黑白的旋律</a>
     <div>
      音 乐 圈:
      <a href="http://q.163.com/m/34405/";>东来东往</a><span>|</span>
      <a href="http://q.163.com/m/1001/";>周杰伦</a><span>|</span>
      <a href="http://q.163.com/m/4382/";>刘德华</a>
        </div>
       </div>
  </div>
  <script>
  var bIsIE=(window.navigator.appVersion.indexOf("MSIE")!=-1)?true:false;
  function listenMusic(url){
   if (bIsIE)
window.open(url,"_blank","resizable=no,scrollbars=no,status=yes,width=770px,height=591px");
   else  alert("目前不支持非IE浏览器");
  }
  </script>
<!-- 音乐 -->
<!-- 社区 -->
        <!-- 社区 -->
  <div id="blog_club" style="display: none;">
         <div class="hit">
            <h4><a href="
http://club.163.com/pub.jsp?func=viewArticleByWWW.m&boardId=sqbs&articleId=sqbs_122e604783c0f96_1
">封神演义版杀期待您的光临</a></h4>
   <div class="hide"><span>社区版杀风云再起,封神期待您的参与!</span></div>
          </div>
    <div class="list">
          <ul>
            <li><a href="
http://club.163.com/pub.jsp?func=viewArticleByWWW.m&boardId=talklife&articleId=talklife_122e4b15f3008f9_0
">结婚不是喊口号</a></li>
            <li><a href="
http://club.163.com/pub.jsp?func=viewArticleByWWW.m&boardId=marriage&articleId=marriage_122e40f666f0678_1
">写给我远赴他乡的朋友</a></li>
            <li><a href="
http://club.163.com/pub.jsp?func=viewArticleByWWW.m&boardId=oldtime&articleId=oldtime_122e360955902af_0
">从那遥远海边</a></li>
          </ul>
         </div>
          <div class="list">
            <ul>
              <li><a href="
http://club.163.com/pub.jsp?func=viewArticleByWWW.m&boardId=v-feel6&articleId=v-feel6_122db7c04e70a4a_1
">临沂之行</a></li>
              <li><a href="
http://club.163.com/pub.jsp?func=viewArticleByWWW.m&boardId=newboard&articleId=newboard_122c524e5ff06bc_0
">本期征稿主题音乐伴我成长</a></li>
              <li><a href="
http://club.163.com/pub.jsp?func=viewArticleByWWW.m&boardId=weicheng&articleId=weicheng_122d23e13891221_0
">我与围城</a></li>
            </ul>
          </div>
    <div class="list4">
      <div class="hide">热门版面:
               <a href="http://club.163.com/viewBoard.m?boardId=hairdrs
">美容美发</a><span>|</span>
               <a href="http://club.163.com/viewBoard.m?boardId=stock
">股海沉浮</a><span>|</span>
               <a href="http://club.163.com/viewBoard.m?boardId=myphoto
">我的自拍</a>
             </div>
     <div class="hide">
      社区星星:
               <a href="
http://club.163.com/viewArticleByWWW.m?boardId=remark&articleId=remark_122db3f83b50951_1&boardOffset=0";>End
『魅』</a><span>|</span>
               <a href="
http://club.163.com/viewArticleByWWW.m?boardId=remark&articleId=remark_122248f59a200d3_0&boardOffset=0
">Kiζs.?n珊</a><span>|</span>
               <a href="
http://club.163.com/viewArticleByWWW.m?boardId=remark&articleId=remark_12248890a220088_1&boardOffset=0
">???@?s?h</a>
        </div>
    </div>
        </div>

<!-- 社区 -->
<!-- 活动 -->
     <!-- 活动 -->
  <div id="blog_act" style="display: none;">
      <div class="pic_act">
       <a  href="http://rich.163.com/act/sheep/index.html?090731fj51";><imgsrc="
http://img.bimg.126.net/photo/K5dvlfyvOsiteOjpxXmVLQ==/1723471282400007169.jpg";
width="78px" height="78px"/></a>
    <div class="info">
     <a class="tit" href="
http://rich.163.com/act/sheep/index.html?090731fj51";>看快女,玩富甲,抢绵羊!</a>
        <p>想要限量版极品宠物小绵羊“可可”吗?马上来玩富甲西游,每天100只小绵羊等你来抢!</p>
    </div>
   </div>
            <div class="list list_act">
              <ul>
               <li><a href="
http://blog.163.com/blog_admin/blog/static/72127920096306158359/?090731bx51
">爆强"3"字神经大挑战</a></li>
               <li><a href="
http://blog.163.com/redirect.html?url=http://survey2.163.com/html/dict_youdao/paper.html?site=blog/090811cd51
">网络词典使用习惯调研</a></li>
              </ul>
            </div>
            <div class="list list_act">
              <ul>
               <li><a href="http://xsl.163.com/?090605xs51&formblogeventss
">超养眼!模特泳装秀>></a></li>
               <li><a href="
http://blog.163.com/redirect.html?url=http://pet.163.com/?090805pe51
">《宠物王国》封测邀请</a></li>
              </ul>
            </div>
            <div class="clear"></div>
  </div>
<!-- 活动 -->
   </div>
</div>
<!--博客end-->
</div>
</div>
</div>
<span class="line_bg2"></span>
<span class="blank9"></span>
</div>
<!-- ad -->
<div class="S_ad960">
<div class="l_ad"><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo170x120&location=1";
width="170" height="120" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></div>
<div class="r_ad"><iframe id="iframe_banner2" name="iframe_banner2" src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=column&location=2";
width="775" height="120" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no"></iframe></div>
</div>
<span class="blank9"></span>
<!-- ent -->
<div class="area areaBg4 clearfix">
<!-- l -->
<div class="col1">
<div class="l_title"><h3><a href="http://blog.163.com/pub/channel/ent.html
">娱乐博客</a></h3>
<span><a href="http://blog.163.com/pub/channel/ent.html";>更多</a></span></div>
<div class="l_picText">
<ul>
<li><a 
href="http://go.ent.163.com/blog/movie.html";><img<http://go.ent.163.com/blog/movie.html%22%3E%3Cimg>src="
http://img4.cache.netease.com/ent/2009/8/12/20090812102222cb778.jpg";
alt="贾樟柯称因爱国退出电影节" width="145" height="75" /></a><span><a href="
http://go.ent.163.com/blog/movie.html";>贾樟柯称因爱国退出电影节</a></span></li>
</ul>
</div>
<div class="l_list">
<ul>
<li><a href="
http://vip.elva.blog.163.com/blog/static/2417054520097112730659/
">萧亚轩与“儿子”嬉耍解压</a></li>
<li><a href="
http://vip.huosiyan.blog.163.com/blog/static/24968167200971111621877/
">霍思燕迷彩酷装出演造型师</a></li>
<li><a href="
http://chenluyu.vip.blog.163.com/blog/static/1138280892009711103241423/
">鲁豫:周立波后台狂抹发胶</a></li>
<li><a href="
http://vip-huangying.blog.163.com/blog/static/120555501200971211736229/
">黄英在宿舍熬靓汤顿显贤惠</a></li>
<li><a href="
http://filmwheat.blog.163.com/blog/static/1227307652009712103523994/
">导演何平笑侃电影圈是鸡窝</a></li>
<li><a href="
http://liuxueping921.blog.163.com/blog/static/112501342200971064814572/
">酒井法子二女侍一夫子内情</a></li>
<li><a href="
http://blog.163.com/wangjueangel@126/blog/static/1043475172009711115515944/
">明道口才好女主持插不上话</a></li>
<li><a href="
http://d.shao-hua.blog.163.com/blog/static/120168967200971142518940/
">丁少华当队长自谦夸奖组员</a></li>
<li><a href="
http://yimengfilms.blog.163.com/blog/static/1238293212009711914559/
">非常完美导演剖析子怡角色</a></li>
</ul>
</div>
</div>
<!-- r -->
<div class="col2">
<!-- r1 -->
<div class="col2A">
<div class="menu_Three_Tab" id="tabone">
<ul>
<li class="active"><a href="http://ent.163.com/"; urn="#default_ent"
rel="onearea">娱乐</a></li>
<li class="normal"><a href="http://ent.163.com/movie/";
urn="/special/00772H57/fromys0726.html" rel="onearea">电影</a>・<a href="
http://ent.163.com/tv/";>电视</a>・<a href="http://ent.163.com/music/
">音乐</a></li>
<li class="normal"><a href="http://ent.163.com/video/";
urn="/special/00772H57/toentpic.html" rel="onearea">视频</a></li>
</ul>
</div>
<div class="midContent " id="onearea">
<div class="colLeft">
<div class="pic">
  <a 
href="http://ent.163.com/09/0812/03/5GG1P7KV00032KMI.html";><img<http://ent.163.com/09/0812/03/5GG1P7KV00032KMI.html%22%3E%3Cimg>src="
http://img4.cache.netease.com/ent/2009/8/12/20090812082205e5cc7.jpg";
alt="谢晋遗孀:想“打死”宋祖德" width="160" height="120" border="0" /></a>
  <a href="http://ent.163.com/09/0812/03/5GG1P7KV00032KMI.html";
class="tip">谢晋遗孀:想“打死”宋祖德</a>
</div>
<div class="listText">
<a href="http://go.ent.163.com/xiyou/index_xiyou.jsp";>"六小龄童二世"人气高涨</a><br />
<a href="http://ent.163.com/special/00033DU1/jiayouxiu.html";>《加油!东方天使》</a><br
/>
<a 
href="http://news.163.com/madeinchina/";><font<http://news.163.com/madeinchina/%22%3E%3Cfont>color=#1F3A87>★中国制造</font></a><br
/>
<a 
href="http://ent.163.com/special/00033JJL/1960liusanjie.html";><em<http://ent.163.com/special/00033JJL/1960liusanjie.html%22%3E%3Cem>class='cDRed'>[电影]1960:刘三姐</em></a><br
/>
<a 
href="http://ent.163.com/special/00033JHR/1960lsj.html";><em<http://ent.163.com/special/00033JHR/1960lsj.html%22%3E%3Cem>class='cDRed'>[音乐]1960:刘三姐</em></a><br
/>
<a href="http://popme.163.com/link/005457_0723_2546.html";>男人心中的性感女神曝光</a><br
/>
<!-- a style="background:none; color:#1f3a87;float:left;" href="
http://popme.163.com/link/005455_0401_3990.html";>[我是芙蓉我最瘦(图)]</a -->
</div>
</div>
<div class="colRight">
<h2><a href="http://ent.163.com/special/00033JD4/jjfz.html
">酒井法子涉毒惊动日本政府</a></h2>
<div class="list">
<ul>
<li><a href="http://ent.163.com/special/00033C6I/girl09.html";>高晓松独家做客聊快女
称曾轶可是正面示范</a></li>
<li><a href="http://ent.163.com/special/00033FRB/Michael163.html
">“还原”杰克逊最后12小时:死前哭闹要见父亲</a></li>
<li><a href="http://ent.163.com/09/0812/07/5GGID8TT00031H2L.html";>阿娇再次接拍牛仔裤广告
被厂商赞很自信(图)</a></li>
<li><a href="http://ent.163.com/09/0812/07/5GGI11CB00031H2L.html";>唐季礼捧场《非常完美》
章子怡献吻表感谢</a></li>
<li><a href="http://ent.163.com/09/0812/11/5GGVS73M00031H2L.html
">林青霞曝拍戏遇黑道人:250万现金铺满我桌子</a></li>
</ul>
<ul class="line">
<li><a href="http://ent.163.com/09/0812/07/5GGH54LL00031H2L.html";>台湾遇灾
艺人捐千万</a> <a href="http://2010.163.com/special/00863IR0/charity_video.html
">杨坤时刻准备为亚运出力</a></li>
<li><a href="http://ent.163.com/09/0812/03/5GG2OTM100031H2L.html";>《叶问2》开机
甄子丹:打到起不了床才退休</a></li>
<li><a href="http://ent.163.com/09/0812/07/5GGI86T000031H2L.html";>《风声》曝光恐怖刑具
李冰冰裸身受刑遭逼供</a></li>
<li><a href="http://ent.163.com/09/0812/05/5GG9ITT000031H2L.html
">广电总局重申“方言令”“额滴神”以后听不到</a></li>
<li><a href="http://ent.163.com/09/0811/18/5GF3L35T000333J5.html";>小S性感热舞广告遇“枪版”
猫人海报提前曝光</a></li>
</ul>
</div>
<div class="more">
<span><a href="http://ent.163.com/";>更多娱乐新闻</a></span>
<span style="background:none; color:#1f3a87;float:left;"><a href="
http://popme.163.com/link/005975_0804_8307.html";>[热点:痘印难消为痘抓狂]</a></span>
</div>
</div>
</div>
</div>
<!-- r2 -->
<div class="col2B">
<div id="from163homebigblogtitle" class="r_title r_TopLine">
<h3><a href="http://2010.163.com/";>亚运频道</a></h3>
</div>
<div id="from163homebigblog" class="rightContent clearfix">
<div class="colLeft">
<a 
href="http://2010.163.com/special/00863IR0/charity_video.html";><img<http://2010.163.com/special/00863IR0/charity_video.html%22%3E%3Cimg>src="
http://img2.cache.netease.com/cnews/2009/8/12/20090812120925b829c.jpg";
width="120" height="70" alt="网易亚运公益明星杨坤" /></a>
<span class="blank6"></span>
<a href="http://2010.163.com/special/00863IR0/charity_video.html";
class="cBlack">网易亚运公益明星杨坤</a>
</div>
<div class="colRight">
<h2 class="bigsize"><a href="
http://2010.163.com/09/0812/08/5GGJT80B00863AUC.html";
class="cBlack">建BRT每公里3157万</a></h2>
<ul class="list1">
<li><a href="http://2010.163.com/09/0812/07/5GGHSCO500863AUC.html
">首批亚运即开体彩10月发行</a></li>
<li><a href="http://2010.163.com/special/00863IR0/charity_video.html
">杨坤:我干过不光彩的事儿</a></li>
<li><a href="http://2010.163.com/special/008638ST/keenlee.html
">广州落选十大美食城引争议</a></li>
<li><a href="http://2010.163.com/09/0812/07/5GGHKJ2M00863AUC.html
">海归美女最爱当亚运空姐</a></li>
</ul>
</div>
</div>
<span class="blankW6 r_TopLine"></span>
<div>
<iframe src="
http://img1.126.net/channel7/005457/090723/homepage/homepage.html";
width="300" height="120" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe>
</div>
<div class="blankW9"></div>
<div class="rightContent r_TopLine">
<div class="S_r_14570">
<iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo300x70&location=7";
width="300" height="70" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe>
</div>
</div>
</div>
</div>
</div>
<span class="line_bg1"></span>
<span class="blank9"></span>
<!-- sports -->
<div class="area areaBg5 clearfix">
<!-- l -->
<div class="col1">
<div class="l_title"><h3><a href="http://bbs.sports.163.com/
">体育社区・博客</a></h3>
<span><a href="http://bbs.sports.163.com/";>更多</a></span></div>
<div class="l_picText">
<ul>
<li><a 
href="http://bbs.cbachina.163.com/bbs/tcb/148365744.html";><img<http://bbs.cbachina.163.com/bbs/tcb/148365744.html%22%3E%3Cimg>src="
http://img2.cache.netease.com/cnews/2009/8/12/20090812091525d5481.jpg";
alt="20年来最糟糕的男篮国家队" width="145" height="75" /></a><span><a href="
http://bbs.cbachina.163.com/bbs/tcb/148365744.html";>20<http://bbs.cbachina.163.com/bbs/tcb/148365744.html%22%3E20>
年来最糟糕的男篮国家队</a></span></li>
</ul>
</div>
<div class="l_list">
<ul>
<li><a href="http://bbs.sports.163.com/bbs/btzq/148381951.html
">舒马赫在跟谁玩“躲猫猫”</a></li>
<li><a href="http://bbs.sports.163.com/bbs/btzq/148385685.html
">死不退赛,李永波将成罪人</a></li>
<li><a href="http://bbs.sports.163.com/bbs/photoshow/148370642.html
">盘点NBA八大冷血乱战高手</a></li>
<li><a href="http://bbs.sports.163.com/bbs/basketball/148341833.html
">火箭签此2人为1人爆发铺路</a></li>
<li><a href="http://bbs.cbachina.163.com/bbs/tcb/148367989.html
">中国男篮已向男足无限靠拢</a></li>
<li><a href="http://bbs.cbachina.163.com/bbs/cba/148373043.html
">男篮解决此3点可轻松称霸</a></li>
<li><a href="http://bbs.sports.163.com/bbs/chaguan/148320910.html
">山东鲁能史上的十大巨星</a></li>
<li><a href="http://bbs.sports.163.com/bbs/shalong/148374364.html
">十位曾来华献艺的足坛巨星</a></li>
</ul>
</div>
</div>
<!-- r -->
<div class="col2">
<!-- r1 -->
<div class="col2A">
<div class="menu_Four_Tab" id="tabtwo">
<ul>
<li class="active"><a href="http://sports.163.com/"; urn="#default_sports"
rel="twoarea">体育</a><!-- a href="
http://pro.163.com/event.ng/Type=click&FlightID=113375&AdID=114772&TargetID=510&Values=31,43,51,60,72,82,91,100,110,150,312,316,330,332,457,515,585,702,733,734,774,788,942,943,944,948,949,950,951,1004&Redirect=http://sports.163.com";><img<http://pro.163.com/event.ng/Type=click&FlightID=113375&AdID=114772&TargetID=510&Values=31,43,51,60,72,82,91,100,110,150,312,316,330,332,457,515,585,702,733,734,774,788,942,943,944,948,949,950,951,1004&Redirect=http://sports.163.com%22%3E%3Cimg>alt="李宁"
src="
http://cimg2.163.com/cnews/163/img6/lining0331.gif"; width="36" height="12"
style="margin:-3px 0 0 4px;" /></a --></li>
<li class="normal"><a href="http://sports.163.com/nba/";
urn="/special/00772H56/fromnba.html" rel="twoarea">NBA</a></li>
<li class="normal"><a href="
http://cbachina.163.com/special/00053GBP/nnajs09.html";
urn="/special/00772H56/cbasports.html" rel="twoarea">男篮亚锦赛</a></li>
<li class="normal"><a href="http://sports.163.com/world/";
urn="/special/00772H56/fromay0726.html" rel="twoarea">国际足球</a></li>
</ul>
</div>
<div class="midContent mid_h1" id="twoarea">
<div class="colLeft">
<div class="pic">
  <a 
href="http://sports.163.com/09/0812/07/5GGGHO7A00051CA1.html";><img<http://sports.163.com/09/0812/07/5GGGHO7A00051CA1.html%22%3E%3Cimg>src="
http://img3.cache.netease.com/sports/2009/8/12/20090812082434b8556.jpg";
alt="火箭等7球队抢姚明克星布泽尔" width="160" height="120" border="0" /></a>
  <a href="http://sports.163.com/09/0812/07/5GGGHO7A00051CA1.html";
class="tip">火箭等7球队抢姚明克星布泽尔</a>
</div>
<div class="listText">
<a href="http://2010.163.com/09/0812/10/5GGRSBM100863AUA.html";>无姚男篮拿什么称霸亚洲?</a>
<br />
<a href="http://2010.163.com/special/008638ST/keenlee.html";>“食在广州”名不副实?</a>
<br />
<a href="http://sports.163.com/special/00053HV1/huizongyem.html";
class="cBlue">★中国制造</a><br />
<a 
href="http://sports.163.com/special/00053HV1/xhf1984.html";><em<http://sports.163.com/special/00053HV1/xhf1984.html%22%3E%3Cem>class='cDRed'>[射击]:许海峰我比别人幸运</em></a>
<br />
<a 
href="http://sports.163.com/special/00053HV1/nanp1981.html";><em<http://sports.163.com/special/00053HV1/nanp1981.html%22%3E%3Cem>class='cDRed'>[男排]:珍藏的录像带已发霉
</em></a> <br />
</div>
</div>
<div class="colRight">
<h2><a href="http://cbachina.163.com/special/00053K3I/CHNLIB00.html";>男篮71-68黎巴嫩
阿联尴尬新高</a></h2>
<div class="list">
<ul>
<li><a 
href="http://cbachina.163.com/09/0812/07/5GGIERLQ00052UA4.html";>台飞人爆扣河升镇(图)</a>
<a href="http://cbachina.163.com/09/0811/17/5GF1NJEK000539D1.html
">河升镇不满裁判摔板凳</a></li>
<li><a href="http://sports.163.com/special/00053K9I/lpback.html";>郎平年薪至少500万</a>
<a href="http://sports.163.com/09/0812/09/5GGN7JCA00051CAQ.html
">名宿:郎平"品牌"值这个价</a></li>
<li><a 
href="http://sports.163.com/09/0811/11/5GEDABF800051C8M.html";>19:30<http://sports.163.com/09/0811/11/5GEDABF800051C8M.html%22%3E19:30>直播国足VS新加坡</a>
<a href="http://sports.163.com/09/0812/03/5GG46I3800051C88.html
">评:应送足协官员留学</a></li>
<li><a href="http://sports.163.com/09/0812/11/5GGTLCSU00051C8M.html
">新加坡密谋挖角中国男足天才:未来将硬撼韩日</a></li>
<li><a 
href="http://sports.163.com/09/0812/06/5GGD12J100052DT2.html";>重庆1人中双色球3883万</a>
<a href="http://sports.163.com/09/0812/10/5GGR8V2F00052DT2.html
">成都牛人倍投揽2177万</a></li>
</ul>
<ul class="line">
<li><a 
href="http://sports.163.com/09/0812/09/5GGPJRPJ00051CA1.html";>2010<http://sports.163.com/09/0812/09/5GGPJRPJ00051CA1.html%22%3E2010>最强自由市场火箭有3人</a>
<a href="http://sports.163.com/09/0811/23/5GFN104400051CA1.html
">阿联暴走网队欢呼</a></li>
<li><a 
href="http://sports.163.com/09/0811/16/5GESTFLN00051CDQ.html";>F1<http://sports.163.com/09/0811/16/5GESTFLN00051CDQ.html%22%3EF1>车王舒马赫宣布放弃复出
颈伤致其无法参赛</a></li>
<li><a 
href="http://sports.163.com/09/0812/07/5GGIH4CF00051C8V.html";>卡卡散步迷路被送上警车</a>
<a href="http://sports.163.com/09/0812/08/5GGJPH8E00051C8V.html
">曼城给梅西空白支票</a></li>
<li><a 
href="http://sports.163.com/09/0811/18/5GF48ELV00051CD5.html";>国米耍大牌惹怒记者</a>
<a 
href="http://sports.163.com/09/0812/09/5GGNGK8S00051CCL.html";>4<http://sports.163.com/09/0812/09/5GGNGK8S00051CCL.html%22%3E4>
千万只够买里贝里一条腿</a></li>
<li><a 
href="http://sports.163.com/special/00053I2P/badminton2009.html";>H1N1<http://sports.163.com/special/00053I2P/badminton2009.html%22%3EH1N1>惊现羽球世锦赛场</a>
<a href="http://sports.163.com/09/0812/06/5GGEHSCT00051KMG.html
">世界11大拳王惨死(图)</a></li>
</ul>
</div>
<div class="more">
<span><a href="http://sports.163.com/";>更多体育新闻</a></span>
<span style="background:none; color:#1f3a87;"><a href="
http://fantasy.sports.163.com/";>玩梦幻,夺球衣赢万元大奖</a></span>
</div>
</div>
</div>
</div>
<!-- r2 -->
<div class="col2B">
<div class="r_title r_line">
<h3><a href="http://www.27.cn/";>推荐</a></h3>
<span><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140537&AdID=142479&TargetID=510&Values=31,43,51,60,72,85,91,100,110,150,312,330,332,459,515,586,620,702,733,734,941,1003,1123,1131,1135&Redirect=http://www.janeshow.net/index.asp?id=10073";>[减肥]--2周挑战15斤</a>&nbsp;&nbsp;&nbsp;<a
href="
http://pro.163.com/event.ng/Type=click&FlightID=140539&AdID=142480&TargetID=510&Values=31,43,51,60,72,85,91,100,110,150,312,330,332,459,515,586,620,702,733,734,941,1003,1123,1131,1135&Redirect=http://www.51hcha.com/
">黑茶减肥-瘦到你尖叫</a></span>
</div>
<div class="rightContent r_bg1">
<div class="blank3"></div>
<div class="list">
<ul>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140421&AdID=142350&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://cp.boheshop.com/mc/index.asp?ccid=21035
">睡觉减肥--瘦到你尖叫</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140422&AdID=142351&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.2223.cc/ad/gg/
">防老公出轨――绝招!</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140423&AdID=142352&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.qingdaofu.cc/163/";><span<http://pro.163.com/event.ng/Type=click&FlightID=140423&AdID=142352&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.qingdaofu.cc/163/%22%3E%3Cspan>class="cDRed">喝汤丰胸―绝了</span></a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140424&AdID=142353&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://cp.boheshop.com/meilei/index.asp?ccid=03033
">更年期--延缓衰老秘决</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140425&AdID=142354&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.51cvc.com/yypftp/
">提高英语成绩学习宝典</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140426&AdID=142355&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.yitong123.cn/by/index.asp?id=6789
">鼻炎――照照ok</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140427&AdID=142356&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.huchao123.com/index.asp?id=9783
">螺旋减肥--减的太快了</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140428&AdID=142357&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.laitroses.com
">妊娠纹-疤痕-30天消除</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140429&AdID=142358&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.51dyd.com/
">大e点让您胸部挺起来</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140430&AdID=142359&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://qb.27.cn/";><span<http://pro.163.com/event.ng/Type=click&FlightID=140430&AdID=142359&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://qb.27.cn/%22%3E%3Cspan>class="cDRed">高效祛斑30天安全彻底</span></a></li>
</ul>
</div>
<div class="list">
<ul>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140431&AdID=142360&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://huofu.boheshop.com/index.asp?ccid=19026
">脸蛋排毒让女人更白嫩</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140432&AdID=142361&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://cp.boheshop.com/xuejiani/index.asp?ccid=16083";><spanclass="cDRed">惊爆李湘祛斑美白绝招</span></a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140433&AdID=142362&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://en.kaoshishop.com/index.asp?ccid=24001
">孩子英语不好家长咋办</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140434&AdID=142363&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.51cvc.com/
">孩子成绩不好怎么办?</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140435&AdID=142364&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.51hcha.com/
">瘦瘦瘦瘦到你尖叫!!</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140436&AdID=142365&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.huchao123.com/index.asp?id=9783";>21
天减肥法-急瘦24斤</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140437&AdID=142366&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://hf.huchao123.com/index.asp?id=9783
">排毒嫩脸--欧美大流行</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140438&AdID=142367&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://aumc.27.cn/
">让孩子爱上学习的诀窍</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140439&AdID=142368&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://51cvc.com/
">让孩子快速提高成绩!</a></li>
<li><a href="
http://pro.163.com/event.ng/Type=click&FlightID=140440&AdID=142369&TargetID=510&Values=31,43,51,60,72,83,92,100,110,150,312,330,332,459,515,589,620,702,733,734,942,943,948,949,950,1006,1125,1129&Redirect=http://www.51hcha.com/
">黑茶减肥-瘦到你尖叫</a></li>
</ul>
</div>
<span class="blank3"></span>
</div>
<div class="blank6 r_TopLine"></div>
<div>
<iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo300x70&location=1";
width="300" height="70" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe>
</div>
</div>
</div>
</div>
<span class="line_bg4"></span>
<span class="blank9"></span>
<!-- stock -->
<div class="area areaBg4 clearfix">
<!-- l -->
<div class="col1">
<div class="l_title"><h3><a href="http://money.163.com/blog/";>财经博客</a></h3>
<span><a href="http://money.163.com/blog/";>更多</a></span></div>
<div class="l_picText">
<ul>
<li><a href="
http://zhuangjianblog.blog.163.com/blog/static/9489740120097113321761/";><img<http://zhuangjianblog.blog.163.com/blog/static/9489740120097113321761/%22%3E%3Cimg>src="
http://img4.cache.netease.com/stock/2009/8/11/20090811182617de189.gif";
alt="中国GDP增长率及其准确性" width="145" height="75" /></a><span><a href="
http://zhuangjianblog.blog.163.com/blog/static/9489740120097113321761/
">中国GDP增长率及其准确性</a></span></li>
</ul>
</div>
<div class="clear"></div>
<div class="l_list">
<ul>
<li><a href="
http://blog.163.com/gouxinyu1979@126/blog/static/89393324200971294438738/";>力拓案
中国应先学会算账</a></li>
<li><a href="
http://hongtaoblog.blog.163.com/blog/static/1201719732009711103926782/
">洪涛:中国尚未有通货膨胀</a></li>
<li><a href="
http://huihudichan.blog.163.com/blog/static/12390290620097128648151/
">徽湖:满大街房价上涨理由</a></li>
<li><a href="
http://zuoshixie.blog.163.com/blog/static/1207450522009711921467/
">谢作诗:中国经济增长前景</a></li>
<li><a href="
http://lrh1010.blog.163.com/blog/static/29646078200971281326618/
">中国巨额美债的三条出路</a></li>
<li><a href="
http://zijinlfei.blog.163.com/blog/static/9517728620097115370497/
">子今非:政府?C身从何入手</a></li>
<li><a href="
http://panshiyisoho.blog.163.com/blog/static/11756303200971101632365/
">潘石屹呼吁土地拍卖更透明</a></li>
<li><a href="http://money.163.com/blog/";>[炒股]</a> <a href="
http://lianxin0303.blog.163.com/blog/static/706368982009712113916367/";>市场走低
越跌越买</a></li>
</ul>
</div>
</div>
<!-- r -->
<div class="col2">
<!-- r1 -->
<div class="col2A">
<div class="menu_Four_Tab" id="maintab">
<ul>
<li class="active"><a href="http://money.163.com/"; urn="#default_stock"
rel="ajaxcontentarea">财经</a></li>
<li class="normal"><a href="http://money.163.com/stock/";
urn="/special/00772H58/fromstock.html" rel="ajaxcontentarea">股票</a></li>
<li class="normal"><a href="http://biz.163.com/";
urn="/special/00772H58/nfrombiz.html" rel="ajaxcontentarea">商业</a></li>
<li class="normal"><a href="http://money.163.com/licai/";
urn="/special/00772H58/nfromlicai.html" rel="ajaxcontentarea">理财</a></li>
</ul>
</div>
<div class="midContent mid_h1" id="ajaxcontentarea">
<div class="colLeft">
<div class="picText">
<div><a 
href="http://quotes.stock.163.com/index.html";><img<http://quotes.stock.163.com/index.html%22%3E%3Cimg>src="
http://img2.quotes.money.163.com/chart/stimechart2/0000001.png"; alt="上证指数"
width="160" height="100" /></a></div>
<div class="s1">

<a href=http://quotes.money.163.com/index.html  target=_blank>上证</a>
<font color="green">3,186.13 -2.41%</font>
</div>
<div class="s2">
<script 
src="http://money.163.com/special/0025jt/gpso.js";></script<http://money.163.com/special/0025jt/gpso.js%22%3E%3C/script>
>
<form action="http://quotes.money.163.com/query_result.jsp"; onsubmit="return
gpsoso('c');" name="find"  method="post" target="_blank">
<input name="code" id="c" type="text" class="input" /> <input type="submit"
value="股票查询" name="gpsub" id="gpsub" class="bu" />
</form>
</div>
</div>
<div class="blank6"></div>
<div class="listText">
<a href="http://money.163.com/09/0812/03/5GG44FL100251LIE.html";>中金买进32只蓝筹股</a>
<br />
<a href="http://money.163.com/09/0811/19/5GF8RD0F00251LIE.html";>“最佳分析师”荐股榜出炉</a>
<br />
<a href="http://money.163.com/09/0812/07/5GGGO5VF00251LJC.html";>两大信号判断调整是否结束</a>
<br />
<a 
href="http://money.163.com/special/00253JOP/1960maotai.html";><em<http://money.163.com/special/00253JOP/1960maotai.html%22%3E%3Cem>class='cDRed'>中国制造1960:茅台</em></a>
<br />
<a 
href="http://money.163.com/special/00253IK0/1959dabaitu.html";><em<http://money.163.com/special/00253IK0/1959dabaitu.html%22%3E%3Cem>class='cDRed'>中国制造1959:大白兔奶糖</em></a>
<br />
</div>
</div>
<div class="colRight">
<h2><a href="http://money.163.com/09/0812/01/5GFR9OIV002524SO.html
">力拓胡士泰等4人被捕</a></h2>
<div class="list">
<ul>
<li><a 
href="http://money.163.com/09/0812/10/5GGRN8HD00252G50.html";>7<http://money.163.com/09/0812/10/5GGRN8HD00252G50.html%22%3E7>月份全国财政收入同比增长10.2%</a>
<a href="http://money.163.com/special/00253K3K/07date.html";>专题</a></li>
<li><a 
href="http://money.163.com/09/0812/04/5GG6H3LA00251LIE.html";>居民存款近两年来首度负增长
资金搬家入市</a></li>
<li><a href="http://money.163.com/09/0812/04/5GG5BP2500252H36.html
">央行考虑用外储向进出口银行注资2000亿</a></li>
<li><a 
href="http://money.163.com/09/0812/09/5GGMB76M00252G50.html";>南京一国企管理层集体私吞国有资产</a>
<a href="http://money.163.com/09/0812/09/5GGMJGH300251VGO.html
">事件调查</a></li>
<li><a 
href="http://money.163.com/09/0812/02/5GFVKGRB002524SO.html";>发改委否认重估成品油定价制</a>
<a href="http://money.163.com/09/0812/04/5GG7A6OH002524SO.html
">原油进口创新高</a></li>
</ul>
<ul class="line">
<li><a href="http://money.163.com/09/0812/00/5GFQHTRM00252G50.html";>温州重现“用工荒”
劳动力缺口将近5万人</a></li>
<li><a 
href="http://money.163.com/special/00253JOP/1960maotai.html";>1960<http://money.163.com/special/00253JOP/1960maotai.html%22%3E1960>
年茅台酒厂:工人从几十人突增到700多人</a></li>
<li><a href="http://money.163.com/special/00253GSR/2009report.html";>[半年报]</a>
<a href="http://money.163.com/09/0811/19/5GF7RTU400253GST.html
">华能国际上半年净利同比增长516%</a></li>
<li><a href="http://biz.163.com/";>[商业]</a> <a href="
http://money.163.com/09/0812/08/5GGKNQM6002534M5.html
">马光远:国美“去黄光裕化”仍需时日</a></li>
<li><a href="http://money.163.com/fund/";>[基金]</a> <a href="
http://money.163.com/09/0812/08/5GGJ6GTU00251LDV.html
">今年新基金募资突破2000亿偏股型居多</a></li>
</ul>
</div>
<div class="more">
<span><a href="http://money.163.com/";>进入财经频道</a></span><!-- span
style="background:none; color:#1f3a87;"><a href="
http://money.163.com/special/00253BKQ/512qycjmap.html";>[汶川周年祭]企业重建地图</a></span
-->
<!-- <span style="background:none; color:#1f3a87;float:left;"><a href="
http://pro.163.com/event.ng/Type=click&FlightID=148457&AdID=150541&TargetID=510&Values=31,43,51,60,72,84,92,100,110,150,312,330,332,457,515,589,702,733,734,788,942,943,944,948,949,950,951,1006,1125,1129,1131,1135,1168&Redirect=http://www.5658gp.com/888.htm";>[今日涨停板!不看后悔]</a></span>
-->
</div>
</div>
</div>
</div>
<!-- r2 -->
<div class="col2B">
<div><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=tvscreen&location=1";
width="300" height="250" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe>
</div>
<div class="blankW9"></div>
<div class="ad39">
<div class="picText">
  <a href="http://www.39.net/";><img <http://www.39.net/%22%3E%3Cimg> src="
http://cimg2.163.com/cnews/163/img6/39.gif"; alt="39健康网_中国第一健康门户网站(www.39.net)"
width="100" height="20" border="0" /></a>
  <div class="text">
  <a href="http://nk.39.net/";>男科</a> <a href="http://fk.39.net/";>妇科</a> <a
href="http://pf.39.net/";>皮肤科</a> <a href="http://cancer.39.net/";>肿瘤科</a> <a
href="http://fitness.39.net/";>减肥</a>
  </div>
<a href="http://ask.39.net";><img <http://ask.39.net%22%3e%3cimg/> src="
http://img1.126.net/channel7/39/39homepage090727.gif";  width="290"
height="22" border="0" style="margin:2px 0 0 4px;" /></a>
  </div>
  <div style="clear:both;">
</div>
</div>
</div>
</div>
</div>
</div>
<span class="line_bg1"></span>
<span class="blank9"></span>
<!-- tech -->
<div class="area areaBg5 clearfix">
<!-- l -->
<div class="col1">
<div class="l_title"><h3><a href="
http://tech.163.com/special/00092FUU/blog_tech.html";>科技博客</a></h3>
<span><a href="http://tech.163.com/special/00092FUU/blog_tech.html
">更多</a></span></div>
<div class="l_picText">
<ul>
<li><a href="
http://jiyongqing.vip.blog.163.com/blog/static/5726621220097115412654/";><img<http://jiyongqing.vip.blog.163.com/blog/static/5726621220097115412654/%22%3E%3Cimg>src="
http://img3.cache.netease.com/tech/2009/8/12/200908120916554b52f.jpg";
alt="冀勇庆:联想的文化苦旅" width="145" height="75" /></a><span><a href="
http://jiyongqing.vip.blog.163.com/blog/static/5726621220097115412654/
">冀勇庆:联想的文化苦旅</a></span></li>
</ul>
</div>
<div class="l_list">
<ul>
<li><a href="
http://blog.163.com/lxxming@126/blog/static/47685326200971204945661/
">开心网和他的对手何去何从</a></li>
<li><a href="
http://bg1eym.blog.163.com/blog/static/555064752009712105035994/
">胡狼狼:亩产一万斤的3G</a></li>
<li><a href="
http://johnguanjing.blog.163.com/blog/static/64417761200971110556688/";>Andoid,iPhone<http://johnguanjing.blog.163.com/blog/static/64417761200971110556688/%22%3EAndoid,iPhone>抢食分天下</a></li>
<li><a href="
http://llovebokang.blog.163.com/blog/static/811760912009711112054888/
">微软唐氏培训和华为的培训</a></li>
<li><a href="
http://city0518.blog.163.com/blog/static/106542028200971185616873/";>Facebook<http://city0518.blog.163.com/blog/static/106542028200971185616873/%22%3EFacebook>
大鱼吃虾米的动机</a></li>
<li><a href="
http://pifanews.blog.163.com/blog/static/10387756200971275419247/
">山寨与无印良品相差几光年</a></li>
<li><a href="
http://xlg163tech.blog.163.com/blog/static/27970530200971111836609/
">上网广告被诉给运营商提醒</a></li>
<li><a href="
http://yidonglabs.blog.163.com/blog/static/10509442220097115521691/
">揭穿SP欠费进行套利内幕</a></li>
<li><a href="
http://vip.maoqiying.blog.163.com/blog/static/41579310200971165449707/
">电信员工砍人是被联通逼?</a></li>
</ul>
</div>
</div>
<!-- r -->
<div class="col2">
<!-- r1 -->
<div class="col2A">
<div class="menu_Four_Tab" id="techtab">
<ul>
<li class="active"><a href="http://tech.163.com/"; urn="#default_tech"
rel="techarea">科技</a></li>
<li class="normal"><a href="http://mobile.163.com/";
urn="/special/00772H5C/nfrommobile.html" rel="techarea">手机</a></li>
<li class="normal"><a href="http://digi.163.com/";
urn="/special/00772H5D/nfromdigi.html" rel="techarea">数码</a></li>
<li class="normal"><a href="http://tech.163.com/3G/";
urn="/special/00772H5B/from3g_0519.html" rel="techarea">3G</a></li>
</ul>
</div>
<div class="midContent" id="techarea">
<div class="colLeft">
<div class="pic">
  <a 
href="http://tech.163.com/mobile/09/0812/07/5GGHT7VO00112K8F.html";><img<http://tech.163.com/mobile/09/0812/07/5GGHT7VO00112K8F.html%22%3E%3Cimg>src="
http://img4.cache.netease.com/mobile/2009/8/12/20090812092119d8948.jpg";
alt="4寸"巨屏"智能手机秒杀MP5" width="160" height="120" border="0" /></a>
  <a href="http://tech.163.com/mobile/09/0812/07/5GGHT7VO00112K8F.html";
class="tip">4寸"巨屏"智能手机秒杀MP5</a>
</div>
<div class="listText">
<a class="cBlue"
href="http://bbs.tech.163.com/list/tech02.html";>★IT<http://bbs.tech.163.com/list/tech02.html%22%3E★IT>
爆料</a><br/>
<a href="http://bbs.tech.163.com/list/tech02.html";>[爆料]</a> <a href="
http://bbs.tech.163.com/bbs/tech02/148392965.html";>阿里巴巴员工分5类</a><br />
<a href="http://bbs.tech.163.com/list/foxconn.html";>[富士康]</a> <a href="
http://bbs.tech.163.com/bbs/foxconn/147981592.html";>绝密工作间照片</a><br />
<a href="http://bbs.tech.163.com/list/tech02.html";>[爆料]</a> <a href="
http://bbs.tech.163.com/bbs/tech02/148393516.html";>原始人事件最新内幕</a><br />
<a class="cBlue" href="http://news.163.com/madeinchina/";>★中国制造</a><br/>
<a 
href="http://tech.163.com/special/00093ID1/nd60specList_12.html";><em<http://tech.163.com/special/00093ID1/nd60specList_12.html%22%3E%3Cem>class='cDRed'>第十二期:断手再植</em></a><br
/>
</div>
</div>
<div class="colRight">
<h2><a href="http://tech.163.com/09/0812/04/5GG5RNAU000915BD.html
">山寨上网本倒闭潮:一夜转衰</a></h2>
<div class="list">
<ul>
<li><a 
href="http://tech.163.com/09/0812/02/5GFUOHTU000915BE.html";>联通100亿买断500万部iPhone
首批9月上市</a></li>
<li><a href="http://tech.163.com/09/0812/10/5GGQJIE6000915BE.html";>中移动TD将改SP分成模式
首年不拿一分钱</a></li>
<li><a 
href="http://tech.163.com/09/0812/03/5GG3LEL9000915BE.html";>13<http://tech.163.com/09/0812/03/5GG3LEL9000915BE.html%22%3E13>家手机厂商密会上海
上海TD发展或放缓</a></li>
<li><a href="http://tech.163.com/09/0811/23/5GFLSLFO000915BD.html
">盖茨拟1.7亿购希腊船王孙女名下岛屿(图)</a></li>
<li><a href="http://tech.163.com/09/0812/03/5GG2AP52000915BF.html";>网络泄密每年损失百亿
信息安全战一触即发</a></li>
</ul>
<ul class="line">
<li>[<a href="http://digi.163.com/";>数码</a>]<a href="
http://tech.163.com/digi/09/0812/08/5GGK08I200161MAH.html";>苹果正开发补丁 修补MacBook
Pro故障</a></li>
<li>[<a href="http://digi.163.com/";>数码</a>]<a href="
http://tech.163.com/digi/09/0812/08/5GGKSNDE0016192E.html";>十款热卖学生笔记本</a> <a
href="http://tech.163.com/digi/09/0812/08/5GGL4V4G001624J1.html";>6<http://tech.163.com/digi/09/0812/08/5GGL4V4G001624J1.html%22%3E6>
款最值得期待相机</a></li>
<li>[<a href="http://mobile.163.com/";>手机</a>]<a href="
http://tech.163.com/mobile/09/0812/06/5GGENKDM00112K8D.html";>全部1500元以下
超值热门智能手机搜罗</a></li>
<li>[<a href="http://mobile.163.com/";>手机</a>]<a href="
http://tech.163.com/mobile/09/0811/16/5GESI7HE0011179O.html
">电池爆炸进展:诺基亚客服希望网友删贴</a></li>
<li>[<a href="http://club.tech.163.com/";>论坛</a>]<a href="
http://club.tech.163.com/bbs/mobile_blat/148325715.html";>揭秘山寨机内陆暴利</a> <a
href="http://digibbs.tech.163.com/bbs/nbdiy/148325822.html
">把电脑改造成静音</a></li>
</ul>
</div>
<div class="more">
<span><a href="http://tech.163.com/";>更多科技新闻&gt;&gt;</a></span>
</div>
</div>
</div>
</div>
<!-- r2 -->
<div class="col2B">
<div class="r_title  r_line">
<h3>网易游戏</h3><span>
<a href="http://xy2.163.com/";>大话II</a> <a href="http://xy3.163.com/";>大话3</a>
<a href="http://xyq.163.com/";>梦幻</a> <a href="http://xyw.163.com/";>大外</a> <a
href="http://tx2.163.com/";>天下贰</a> <a href="http://popogame.163.com/
">泡泡游戏</a></span>
</div>
<div class="r_list1 r_bg1">
<div class="imgText80 clearfix">
       <a 
href="http://nie.163.com/2009/design/index.html";><img<http://nie.163.com/2009/design/index.html%22%3E%3Cimg>height="80"
width="80" style="left" src="
http://res.nie.netease.com/nie/abc/09/08/design.gif"; class="imgSide" /></a>
   <ul>
     <li><a 
href="http://nie.163.com/news/2009/8/10/440_203898.html";><em<http://nie.163.com/news/2009/8/10/440_203898.html%22%3E%3Cem>class='cBlack
fB'>《梦幻西游》登陆CCTV朝闻天下</em></a></li>
<li><a href="http://nie.163.com/news/2009/7/31/440_203469.html
">独家:《魔兽世界》内测指引</a></li>
<li><a href="http://nie.163.com/news/2009/7/31/440_203523.html
">三国天下8月4日开测</a></li>
<li><a href="http://nie.163.com/";>网易游戏门户全新改版</a></li>
<li><a 
href="http://xy3.163.com/2009/fs/";><em<http://xy3.163.com/2009/fs/%22%3E%3Cem>class='cBlack'>《大话3》第二部资料片登场</em></a></li>
  </ul>
    </div>
    <div class="rightContent" style="padding-top:0;">
 <div class="r_text">人气玩家:  <a href="
http://blog.163.com/activities/tx2show/4485016.do?fromTx2showuserrecom";>炫漓萱</a>
| <a href="http://blog.163.com/activities/xy3show/4478037.do";>【媚惑】也恢恢</a> |
<a href="
http://blog.163.com/activities/tx2show/4616013.do?fromTx2showweeklystar
">千?~??</a>
<span class="blank6"></span>
 火爆论坛: <a href="http://xyq.netease.com";>梦幻论坛</a> | <a href="
http://xy2.netease.com";>大话II论坛</a> | <a href="http://tx2.netease.com
">天下贰论坛</a>
<span class="blank6"></span>
</div></div>
</div>
<div class="blank9 r_TopLine"></div>
<div class="S_r_145">
<li><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo145x60&location=5";
width="145" height="60" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></li>
<li class="r"><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo145x60&location=6";
width="145" height="60" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></li>
</div>
<span class="blank9"></span>
<div class="S_r_145">
<li><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo145x60&location=7";
width="145" height="60" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></li>
<li class="r"><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo145x60&location=8";
width="145" height="60" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></li>
</div>
</div>
</div>
</div>
<span class="line_bg4"></span>
<span class="blank9"></span>
<!-- ad -->
<div class="S_ad960">
<div class="l_ad"><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo170x120&location=2";
width="170" height="120" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></div>
<div class="r_ad"><iframe id="iframe_banner3" name="iframe_banner3" src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=column&location=3";
width="775" height="120" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no"></iframe></div>
</div>
<span class="blank9"></span>
<!-- auto -->
<div class="area areaBg5 clearfix">
<!-- l -->
<div class="col1">
<div class="l_title"><h3><a href="http://gz.house.163.com/";>网易房产・广州</a></h3>
<span><a href="http://gz.house.163.com/";>更多</a></span></div>
<div class="l_picText">
<ul>
<li><a 
href="http://gz.house.163.com/09/0812/08/5GGL4NHC00873C6D.html";><img<http://gz.house.163.com/09/0812/08/5GGL4NHC00873C6D.html%22%3E%3Cimg>src="
http://img3.cache.netease.com/house/2009/8/12/20090812103833fc28b.jpg";
alt="房地产市场拐点未至" width="145" height="75" /></a><span><a href="
http://gz.house.163.com/09/0812/08/5GGL4NHC00873C6D.html
">房地产市场拐点未至</a></span></li>
</ul>
</div>
<div class="l_list">
<ul>
<li><a href="http://gz.house.163.com/09/0812/09/5GGN97CK00873C6D.html
">上海倒楼不再重建(图)</a></li>
<li><a href="http://gz.house.163.com/09/0812/09/5GGMJSLJ00873C6D.html
">地产股二季度业绩环比大涨</a></li>
<li><a href="http://gz.house.163.com/09/0812/08/5GGKB7MD00873C6D.html
">广州下周同时拍卖9地块</a></li>
<li><a href="http://gz.house.163.com/09/0812/09/5GGMHTH200873C6D.html
">开发商二三线城市抢地</a></li>
<li><a href="http://gz.house.163.com/09/0812/11/5GH04BE200873C6D.html
">部分城市豪宅及郊区风险大</a></li>
<li><a href="http://gz.house.163.com/09/0812/10/5GGSPILR00873C6D.html
">郎平年薪500万教恒大女排</a></li>
<li><a href="
http://chuyunworkroom.blog.163.com/blog/static/122116444200971213023755/
">楚芸:买房别寄望房价下底</a></li>
<li><a href="http://gz.house.163.com/09/0811/18/5GF3Q6HV00873CN0.html
">隽峰苑楼王毛坯22000元/平</a></li>
<li><a href="http://bbs.gz.house.163.com/bbs/housestory/148304330.html
">男人住女人的房子丢脸么?</a></li>
</ul>
</div>
</div>
<!-- r -->
<div class="col2">
<!-- r1 -->
<div class="col2A">
<div class="menu_Four_Tab" id="tabthree">
<ul>
<li class="active"><a href="http://auto.163.com/"; urn="#default_auto"
rel="threearea">汽车</a></li>
<li class="normal"><a href="http://auto.163.com/buy/";
urn="/special/00772H5A/from163model.html" rel="threearea">汽车・车型</a></li>
<li class="normal"><a href="http://club.auto.163.com/";
urn="/special/00772H5A/from163cs.html" rel="threearea">汽车・社区</a></li>
<li class="normal"><a href="http://house.163.com/";
urn="/special/00772HCQ/nfromhouse.html" id="gzHouse"
rel="threearea">房产</a></li>
</ul>
</div>
<div class="midContent mid_h1" id="threearea">
<div class="colLeft">
<div class="pic">
  <a 
href="http://auto.163.com/09/0811/11/5GECSET5000827U2.html";><img<http://auto.163.com/09/0811/11/5GECSET5000827U2.html%22%3E%3Cimg>src="
http://img4.cache.netease.com/auto/2009/8/11/2009081111461104512.jpg";
alt="黄光裕 座驾总价近4000万!" width="160" height="120" border="0" /></a>
  <a href="http://auto.163.com/09/0811/11/5GECSET5000827U2.html";
class="tip">黄光裕 座驾总价近4000万!</a>
</div>
<div class="listText">
   <a 
href="http://auto.163.com/special/00082PSE/bmwtiaozhansai.html";>[独家合作]BMW3驾驶挑战赛</a><br>

   <a 
href="http://auto.163.com/special/00083JGI/cybindex.html";>[车友帮]帮你破解越野DNA</a><br>

   <a 
href="http://auto.163.com/special/00083ICN/nd60speclist.html";><font<http://auto.163.com/special/00083ICN/nd60speclist.html%22%3E%3Cfont>color=#1F3A87>★中国制造</font></a><br>
   <a 
href="http://auto.163.com/special/00083I9V/2009micjgsmt.html";><em<http://auto.163.com/special/00083I9V/2009micjgsmt.html%22%3E%3Cem>class='cDRed'>第十二期:井冈山摩托车</em></a><br>
   <a 
href="http://auto.163.com/special/00083I9V/2009micjn150.html";><em<http://auto.163.com/special/00083I9V/2009micjn150.html%22%3E%3Cem>class='cDRed'>第十一期:重卡黄河JN150</em></a><br>
</div>
</div>
<div class="colRight">
<h2><a href="http://auto.163.com/09/0812/10/5GGQS1NU000816HJ.html
">最畅销汽车"自主品牌"遭贱卖</a></h2>
<div class="list">
<ul>
<li><a href="http://auto.163.com";>[新车]</a> <a href="
http://auto.163.com/09/0812/10/5GGR65C000082H5Q.html";>国产高尔夫6
最低仅售11.58万?(图)</a></li>
<li><a href="http://auto.163.com/";>[中国制造]</a> <a href="
http://auto.163.com/special/00083I9V/2009micjgsmt.html
">用手敲打出来的"井冈山摩托车"</a></li>
<li><a href="http://auto.163.com/";>[新车]</a> <a href="
http://auto.163.com/special/00083KB7/bravo_autoshift.html";>菲亚特博悦AT正式上市
售21.9-23.9万</a></li>
<li><a href="http://auto.163.com/";>[新车]</a> <a href="
http://auto.163.com/09/0812/09/5GGMONMN00082H5R.html";>斯柯达昊锐售价曝光
19.5-28.2万元</a></li>
<li><a href="http://auto.163.com/";>[车友帮]</a> <a href="
http://club.auto.163.com/bbs/carhelp/147880379.html";>人生第1部车!
12万以内自动挡车推荐</a></li>
</ul>
<ul class="line">
<li><a href="http://auto.163.com/";>[新车]</a> <a href="
http://auto.163.com/special/00083K82/bmw5l.html";>2010<http://auto.163.com/special/00083K82/bmw5l.html%22%3E2010>款宝马5系正式上市
售41.26万元起</a></li>
<li><a href="http://auto.163.com/09/0812/09/5GGO15NG0008360V.html";>[新车]</a>
<a href="http://auto.163.com/09/0812/09/5GGO15NG0008360V.html";>模仿三菱战斗机格栅
奥迪A8原型车曝光</a></li>
<li><a href="http://auto.163.com/";>[新闻]</a> <a href="
http://auto.163.com/09/0812/09/5GGNBCRQ00081TPJ.html";>20<http://auto.163.com/09/0812/09/5GGNBCRQ00081TPJ.html%22%3E20>多万元泡汤
福特GT新车刚买就报废</a></li>
<li><a href="http://auto.163.com/";>[趣闻]</a> <a href="
http://auto.163.com/09/0812/09/5GGMS6TR000816HJ.html";>激光炮等武装齐备
"特种部队"爆改悍马</a></li>
<li><a href="http://auto.163.com/";>[新闻]</a> <a href="
http://auto.163.com/09/0812/07/5GGHTJJA00081TPJ.html";>疯狂的奥迪婚车穿墙
阿婆梦中被埋(图)</a></li>
</ul>
</div>
<div class="more">
<span><a href="http://auto.163.com/";>更多汽车资讯&gt;&gt;</a></span>
</div>
</div>
</div>
</div>
<!-- r2 -->
<div class="col2B">
<div class="r_title r_line">
<h3><a href="http://bbs.163.com/";>网易论坛</a></h3>
</div>
<div class="rightContent r_bg1">
<div class="list1">
<h4 class="f14bold"><a href="
http://bbs.news.163.com/bbs/photo/148313712.html";>实拍:牛人竟在瀑布上跳水(组图)</a></h4>
<ul>
<li><h6><a href="http://bbs.news.163.com/list/society.html";>[社会万象]</a> <a
href="http://bbs.news.163.com/bbs/society/148331721.html
">恶女霸占房产,逐8旬老母露宿街头</a></h6></li>
<li><h6><a href="http://bbs.ent.163.com/list/bagua.html";>[超级爆料]</a> <a
href="http://bbs.ent.163.com/bbs/bagua/148332955.html
">《建国大业》明星们惊人的真实国籍</a></h6></li>
<li><h6><a href="http://bbs.local.163.com/list/localsc.html";>[四川]</a> <a
href="http://bbs.local.163.com/bbs/localsc/148399474.html
">成都女大学生村官当街被狂殴致脑死</a></h6></li>
<li><h6><a href="http://bbs.news.163.com/list/zplt.html";>[抓拍论坛]</a> <a
href="http://bbs.news.163.com/bbs/zplt/148228868.html
">实拍比基尼选秀上最雷人的瞬间!</a></h6></li>
<li><h6><a href="http://bbs.lady.163.com/list/lovestory.html";>[情流感门诊]</a> <a
href="http://bbs.lady.163.com/bbs/lovestory/148284953.html
">再婚家庭只有生个孩子才会稳定吗</a></h6></li>
<li><h6><a href="http://bbs.ent.163.com/list/bagua.html";>[超级爆料]</a> <a
href="http://bbs.ent.163.com/bbs/bagua/148329032.html
">娱记爆料全国最虚伪的十大明星</a></h6></li>
<li><h6><a href="http://bbs.lady.163.com/list/lovestory.html";>[情流感门诊]</a> <a
href="http://bbs.lady.163.com/bbs/lovestory/148270819.html
">一句话分手,是我不对还是男友自卑</a></h6></li>
<li><h6><a 
href="http://bbs.money.163.com/list/agu.html";>[A<http://bbs.money.163.com/list/agu.html%22%3E[A>股论坛]</a>
<a href="http://bbs.money.163.com/bbs/agu/148219023.html
">炒股大实话:啥时候买,啥时候卖</a></h6></li>
<li><h6><a href="http://bbs.money.163.com/list/cjdg.html";>[财经大观]</a> <a
href="http://bbs.money.163.com/bbs/cjdg/148317188.html";>ADSL<http://bbs.money.163.com/bbs/cjdg/148317188.html%22%3EADSL>忘报停
4年产生5千多费用!</a></h6></li>
</ul>
</div>
 <span class="blank3"></span>
</div>
<div class="blank9 r_TopLine"></div>
<div class="S_r_145">
<li><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo145x60&location=9";
width="145" height="60" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></li>
<li class="r"><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo145x60&location=10";
width="145" height="60" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></li>
</div>
</div>
</div>
</div>
<span class="line_bg4"></span>
<span class="blank9"></span>
<!-- lady -->
<div class="area areaBg7 clearfix">
<!-- l -->
<div class="col1">
<div><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=logo170x314&location=1";
width="170" height="314" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe></div>
</div>
<!-- r -->
<div class="col2">
<!-- r1 -->
<div class="col2A">
<div class="menu_Four_Tab" id="tabfour">
<ul>
<li class="active"><h5><a href="http://lady.163.com/"; urn="#default_lady"
rel="fourarea">女人</a></h5></li>
<li class="normal"><h5><a href="http://lady.163.com/";
urn="/special/00772H59/fromsc.html" rel="fourarea">女人・时尚</a></h5></li>
<li class="normal"><h5><a href="http://lady.163.com/";
urn="/special/00772H59/fromqa.html" rel="fourarea">女人・情感</a></h5></li>
<li class="normal"><h5><a href="http://lady.163.com/";
urn="/special/00772H59/frombaby.html" rel="fourarea">女人・亲子</a></h5></li>
</ul>
</div>
<div class="midContent mid_h1" id="fourarea">
<div class="colLeft">
<div class="pic">
  <a 
href="http://lady.163.com/09/0811/00/5GD7PNUT00261IDD.html";><img<http://lady.163.com/09/0811/00/5GD7PNUT00261IDD.html%22%3E%3Cimg>src="
http://img3.cache.netease.com/lady/2009/8/12/2009081207543320e63.jpg";
alt="尖叫吧!快女最新雷人蝴蝶妆" width="160" height="120" border="0" /></a>
  <a href="http://lady.163.com/09/0811/00/5GD7PNUT00261IDD.html";
class="tip">尖叫吧!快女最新雷人蝴蝶妆</a>
</div>
<div class="listText">
<!-- /special/00262HMN/ladykeyword0121.html -->
<a 
href="http://lady.163.com/special/00263I3K/nd60lady1959.html";><em<http://lady.163.com/special/00263I3K/nd60lady1959.html%22%3E%3Cem>class='cDRed'>她影响中国
1959年邓颖超</em></a><br /><a href="
http://lady.163.com/special/00263I3K/nd60lady1958.html";><em<http://lady.163.com/special/00263I3K/nd60lady1958.html%22%3E%3Cem>class='cDRed'>她影响中国
1958年杨沫</em></a><br /><a href="
http://lady.163.com/special/00263CVQ/2009thighhigh.html";>09<http://lady.163.com/special/00263CVQ/2009thighhigh.html%22%3E09>秋冬
过膝高筒靴最潮</a><br /><a href="http://zine.lady.163.com/";>新易游人:带你认识朝鲜</a><br /><a
href="http://lady.163.com/09/0811/11/5GEDUKF500263BNV.html
">广州菜男挑战粤菜达人</a></div>
</div>
<div class="colRight">
<h2><a 
href="http://lady.163.com/special/00261RST/minglishang090811.html";>章子怡范冰冰斗艳
大秀露背装</a></h2>
<div class="list">
<ul>
<li><a href="http://lady.163.com";>[人物]</a> <a href="
http://lady.163.com/special/00263I3K/nd60lady1960.html
">邢燕子:生产自救时期的美女偶像</a></li>
<li><a href="http://lady.163.com";>[时尚]</a> <a href="
http://lady.163.com/09/0812/10/5GGQ056R00261PDG.html
">蒙娜丽莎大复活?T台盛行惊悚无眉妆</a></li>
<li><a href="http://lady.163.com";>[搭配]</a> <a href="
http://lady.163.com/09/0811/14/5GEOARN6002626K1.html
">连衣裙+腰带!拒绝"假孕妇"穿出小蛮腰</a></li>
<li><a href="http://lady.163.com";>[潮流]</a> <a href="
http://lady.163.com/special/00261MPJ/liuxingyu090810.html
">大家误会了!内地版"F4"其实穿得很潮!</a></li>
<li><a href="http://lady.163.com";>[情感]</a> <a href="
http://lady.163.com/09/0811/17/5GF1SNQV00261KQ0.html";>过期的男友=变了形的内衣
该扔就扔吧</a></li>
</ul>
<ul class="line">
<li><a href="http://bbs.lady.163.com/";>[论坛]</a> <a href="
http://bbs.lady.163.com/bbs/beautify/147974795.html
">真人示范:夏天我们需要清爽的妆容</a></li>
<li><a href="http://bbs.lady.163.com/";>[论坛]</a> <a href="
http://bbs.lady.163.com/bbs/whitecollar/147565071.html";>在公司被40多岁老男人打小报告
郁闷</a></li>
<li><a href="http://bbs.lady.163.com/";>[论坛]</a> <a href="
http://bbs.lady.163.com/bbs/dapeiriji/147903897.html
">晒今夏包包败绩,JMS来给个评价吧</a></li>
<li><a href="http://bbs.lady.163.com/";>[论坛]</a> <a href="
http://bbs.lady.163.com/bbs/lovestory/148378480.html
">为他生了龙凤胎,他不养,我好心痛!</a></li>
<li><a href="http://bbs.lady.163.com/";>[论坛]</a> <a href="
http://bbs.lady.163.com/bbs/danshenmm/147907447.html";>苦楚无奈
深圳MM觅不育男子携手一生</a></li>
</ul>
</div>
<div class="more">
<span><a href="http://lady.163.com/";>进女人频道</a></span>
<span style="background:none; color:#1f3a87;float:left;"><a href="
http://www.k6.cn/zt/fx/index.html?SourceID=50";>教你拥有诱人丰满胸型</a></span>
</div>
</div>
</div>
</div>
<!-- r2 -->
<div class="col2B">
<div style="clear:both;height:207px;"><iframe src="
http://pro.163.com/html.ng/site=netease&affiliate=homepage&cat=homepage&type=tvscreen&location=2";
width="300" height="207" frameborder="0" border="0" marginwidth="0"
marginheight="0" scrolling="no" ></iframe>
</div>
<div class="blankW9"></div>
<div class="r_title r_line">
<h3><a href="http://gb.corp.163.com/corpnews/";>网易动态</a> <a href="
http://e-newsletter.blog.163.com/";>网易快讯</a></h3>
<span>NTES:45.01 Change:-0.77%</span>
</div>
<div class="rightContent">
<div class="list1">
<ul>
<li><h6><a href="http://corp.163.com/09/0807/16/5G4JLTVP00832V40.html
">历届小市长对话广州市长活动圆满举行</a></h6></li>
<li><h6><a href="http://corp.163.com/09/0722/16/5ERE29VR00832V40.html
">网易2009中国体育营销峰会成功落幕</a></h6></li>
<li><h6><a 
href="http://corp.163.com/09/0525/21/5A6K4A5S00832V40.html";>“川流不息”网易新闻主题活动日直击</a></h6><span><a
href="http://gb.corp.163.com/corpnews/";>更多</a></span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<span class="line_bg5"></span>
<script type="text/javascript" language="javascript" src="
http://img1.cache.netease.com/cnews/js/ntes_jslib_1.x.js";
charset="gb2312"></script>
<script type="text/javascript" language="javascript">
//<![CDATA[
// 深圳和外省 house.163.com
var HouseCity = {

 url : "http://ip.ws.126.net/ipquery";,

 check : function(isGd) {
  if (typeof isGd != "string" && typeof lo != "undefined" && typeof lc !=
"undefined") {
   isGd = ("广东省" == lo && "深圳市" == lc) || lo != "广东省" ? 0 : 1;
   NTES.cookie.set("isGd", isGd, 150 * 24 * 60,".163.com");
  }
  if (1 == isGd) {
   $("#houseUrl").href = "http://gz.house.163.com/";;
   $("#homeUrl").href = "http://gz.house.163.com/home/";;
   $("#gzHouse").href = "http://gz.house.163.com/";;
   $("#gzHouse").setAttribute("urn", "/special/00772H5A/gzhouse0811.html");
  }
 },

 init : function() {
  var isGd = NTES.cookie.get("isGd");
  if ("" == isGd) {
   NTES.ajax.importJs(HouseCity.url, this.check);
  } else {
   this.check(isGd);
  }
 }
};
HouseCity.init();
//end ip check
startajaxtabs("maintab","tabone","tabtwo","tabzero","tabthree","tabfour","techtab","blogMenu");
ajccache["blog_blogs"] = getElement("blog_blogs").innerHTML;
ajccache["blog_music"] = getElement("blog_music").innerHTML;
ajccache["blog_circle"] = getElement("blog_circle").innerHTML;
ajccache["blog_club"] = getElement("blog_club").innerHTML;
ajccache["blog_act"] = getElement("blog_act").innerHTML;
//ADTEXT切换表单
if (NTES.cookie.get("NTES_adText")) {
                var i = parseInt(NTES.cookie.get("NTES_adText")) + 1;
                var lilen = NTES("#adMenu > li").length - 1;
                if (i > lilen) {
                    i = 0;
                }
                NTES.cookie.set("NTES_adText", i);
                var ad_Text = new NTES.ui.Slide(NTES("#adMenu > li"),
NTES("#adMenuContent > div"), "active", "mouseover", 5000);
                ad_Text.show(i);
            }
            else {
                var ad_Text = new NTES.ui.Slide(NTES("#adMenu > li"),
NTES("#adMenuContent > div"), "active", "mouseover", 5000);
                NTES.cookie.set("NTES_adText", 0);
            }

//]]>
</script>
<div class="aboutNetease">
<ul>
<li><a 
href="http://corp.163.com/eng/about/overview.html";>About<http://corp.163.com/eng/about/overview.html%22%3EAbout>NetEase</a>
- <a href="
http://gb.corp.163.com/gb/about/overview.html";>公司简介</a> - <a href="
http://gb.corp.163.com/gb/contactus.html";>联系方法</a> - <a href="
http://hr.163.com/";>招聘信息</a> - <a href="http://help.163.com/";>客户服务</a> - <a
href="http://gb.corp.163.com/gb/legal.html";>相关法律</a> - <a  href="
http://emarketing.163.com/";>网络营销</a></li>
</ul>
</div>
<span class="blank6"></span>
<!-- 页脚 -->
<div class="foot">
<div class="copyRight">网易公司版权所有 &copy;1997-2009<br />
    <a 
href="http://images.163.com/images/163/license_090531.jpg";>ICP<http://images.163.com/images/163/license_090531.jpg%22%3EICP>证粤B2-20090191</a>
<a href="http://images.163.com/images/163/zzxk09.jpg";>增值电信业务经营许可证B2-20090058</a>
<a href="http://images.163.com/images/163/cert.jpg";>互联网出版许可证粤002号</a> <a
href="http://cimg2.163.com/cnews/163/img6/news.htm";>互联网新闻信息服务许可证</a> <a
href="http://www.gdca.gov.cn/";>广东省通信管理局</a> <a href="
http://cimg.163.com/home/2005/8/16/20050816101415d41d8.jpg";>国际联网备案</a><br />
<a href="http://net.china.cn/chinese/index.htm";>违法不良信息举报中心</a> <a href="
http://post.news.163.com/msg/jubao.jsp";>不良信息举报信箱</a> <a href="
http://post.news.163.com/msg/zhubian.jsp";>文明办网举报电话</a> <a href="
http://www.netbj.org.cn/";>北京网络行业协会</a> <a href="
http://cimg20.163.com/cnews/2008/3/31/20080331174924cbaa9.jpg";>视听节目制作许可证</a>
<a 
href="http://cimg20.163.com/sports/2008/5/16/20080516153237ce90f.gif";>传播许可证</a><br
/>
    北京网通提供网络带宽 <br />
<a href="
http://www.hd315.gov.cn/beian/view.asp?bianhao=0102000102300012";><img src="
http://images.163.com/images/163homepage/biaoshi.gif"; alt="" /></a> <a
href="http://www.itrust.org.cn/yz/pjwx.asp?wm=2012043533";><img alt="" src="
http://img1.cache.netease.com/cnews/netease/wzdzbs.gif"; /></a> <a href="
http://www.bj.cyberpolice.cn/index.htm";><img<http://www.bj.cyberpolice.cn/index.htm%22%3E%3Cimg>alt=""
src="
http://images.163.com/bj110.gif"; /></a> </div>
</div>
<script type="text/javascript" src="
http://img2.126.net/ntesrich/f.js";></script<http://img2.126.net/ntesrich/f.js%22%3E%3C/script>
>
<script language="JavaScript" src="
http://img2.126.net/ntesrich/2009/0812/index/tianlei.js";></script<http://img2.126.net/ntesrich/2009/0812/index/tianlei.js%22%3E%3C/script>
>

<!-- 浮动logo begin -->
<!-- 浮动logo end -->
<SCRIPT LANGUAGE="JavaScript1.1" SRC="
http://pro.163.com/js.ng/site=netease&affiliate=homepage&cat=homepage&type=popup&location=2";></SCRIPT<http://pro.163.com/js.ng/site=netease&affiliate=homepage&cat=homepage&type=popup&location=2%22%3E%3C/SCRIPT>
>
<img src='http://adgeo.163.com/ad_cookies'  width="0" height="0">
<SCRIPT LANGUAGE="JavaScript1.1" SRC="
http://pro.163.com/js.ng/site=netease&affiliate=homepage&cat=homepage&type=flash&location=1";></SCRIPT<http://pro.163.com/js.ng/site=netease&affiliate=homepage&cat=homepage&type=flash&location=1%22%3E%3C/SCRIPT>
>
<!-- START WRating v1.0 -->
<script type="text/javascript" src="http://163.wrating.com/a1.js";>
</script>
<script type="text/javascript">
var vjAcc="860010-0503010000";
var wrUrl="http://163.wrating.com/";;
vjTrack("");
</script>
<noscript><img src="http://163.wrating.com/a.gif?a=&c=860010-0503010000";
width="1" height="1"/></noscript>
<!-- END WRating v1.0 -->
<!-- START NetEase Devilfish 2006 -->
<script src="http://analytics.163.com/ntes.js";
type="text/javascript"></script>
<script type="text/javascript">
_ntes_nacc = "www";
neteaseTracker();
neteaseClickStat();
</script>
<!-- END NetEase Devilfish 2006 -->
  <!-- del cookie -->
        <script type="text/javascript" language="JavaScript">
            //<![CDATA[
            var DelCookie = function(){
                var cooks = document.cookie.split(";");
                var cook = ["WeatherAddr", "_fund_custom_ids",
"_fund_custom_codes", "_fund_custom_names", "_fund_custom_nv1",
"new_quotecode", "new_quotename", "new_quotenowp", "new_quoteudr",
"hk_recent_visited_stocks", "000P_product_idi", "000P_product_namei",
"000P_product_photoi", "000O__loveProductid_i", "000O _loveProductImg_i",
"000O _loveProductName_i", "voteid", "jsessionid","quote_cutom_ fund_cutom_
","NTES_adMenuNum"];
                var len = cooks.length;
                var j = -1;
                var reg = /(quote|fund)_custom/g;
                while (++j < len) {
                    if (reg.test(cooks[j])) {
                        cook.push(cooks[j].replace(/=(.*)$/, ""));
                    }
                }
                var cookLen = cook.length;
                var i = -1;
                while (++i < cookLen) {
                    NTES.cookie.del(cook[i], ".163.com");
                }
            }
            DelCookie();
            //]]>
        </script>
  <!-- end -->
</body>
</html>

Other related posts: