<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[好~博客wangyan - IT这一行]]></title>
<link>http://www.haoblogs.com/</link>
<description><![CDATA[我喜欢坐在地上看时光的痕迹,像一行一行蚂蚁穿越我的记忆]]></description>
<language>zh-cn</language>
<copyright><![CDATA[Copyright 2005 PBlog2 v2.4]]></copyright>
<webMaster><![CDATA[yanzi123326@163.com(linzi)]]></webMaster>
<generator>PBlog2 v2.4</generator> 
<image>
	<title>好~博客wangyan</title> 
	<url>http://www.haoblogs.com/images/logos.gif</url> 
	<link>http://www.haoblogs.com/</link> 
	<description>好~博客wangyan</description> 
</image>

			<item>
			<link>http://www.haoblogs.com/default.asp?id=306</link>
			<title><![CDATA[IE8中eWebEditor编辑器按钮无法使用的解决方法]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Tue,15 Dec 2009 15:12:19 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=306</guid>	
		<description><![CDATA[最近碰到一个问题让我很头疼<br/>用eWebEditor编辑器的人应该会碰到这样一个问题：eWebEditor编辑器在IE6.0的版本下按钮可以用，但是用IE8.0编辑器按钮就会失效，无法点开<br/><br/>现在找到一种方法可以解决这个问题<br/>通过修改js文件如下操作： <br/>在eWebEditor的目录里找到Editor.js文件，路径是webedit\Include\Editor.js（版本不同路径也不一定相同新版本中webedit/js/editor.js),在其中找到如下代码：<br/>代码如下:<br/>if (element.YUSERONCLICK) { <br/>eval(element.YUSERONCLICK + &#34;anonymous()&#34;); <br/>} <br/><br/>或 <br/>代码如下:<br/>if (element.YUSERONCLICK) eval(element.YUSERONCLICK + &#34;anonymous()&#34;); <br/><br/>版本不同可能写法有点区别 <br/>将上面的代码替换为以下一段即可 <br/>代码如下:<br/>if(navigator.appVersion.match(/8./i)==&#39;8.&#39;) <br/>{ <br/>if (element.YUSERONCLICK) eval(element.YUSERONCLICK + &#34;onclick(event)&#34;); <br/>} <br/>else <br/>{ <br/>if (element.YUSERONCLICK) eval(element.YUSERONCLICK + &#34;anonymous()&#34;); <br/>} <br/><br/>进入后台测试下，eWebEditor编辑器按钮在IE8.0下也可以正常使用了。<br/>用这样一段代码，对浏览器的版本做一个判断就好了，ie6下面应该也能用<br/><br/><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=296</link>
			<title><![CDATA[不间断滚动代码]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Fri,25 Sep 2009 15:32:28 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=296</guid>	
		<description><![CDATA[下面这段代码就可以实现从下到上的不间断滚动<br/><br/>&nbsp;&nbsp;&lt;div&nbsp;&nbsp; id=demo_b&nbsp;&nbsp; style=&#34;overflow:hidden;&nbsp;&nbsp; WIDTH:&nbsp;&nbsp; 100%;&nbsp;&nbsp; HEIGHT:&nbsp;&nbsp; 100%&#34;&nbsp;&nbsp; onmouseover=&#34;ii=1&#34;&nbsp;&nbsp; onmouseout=&#34;ii=0&#34;&gt;&nbsp;&nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&nbsp;&nbsp; id=demo1_b&gt;&nbsp;&nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;<br/>&nbsp;&nbsp;<span style="color:Red">///////////这里加你的内容就可以了。。。&nbsp;&nbsp; </span>&nbsp;&nbsp;&nbsp;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;&nbsp;&nbsp;&nbsp;&nbsp; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;div&nbsp;&nbsp; id=demo2_b&gt;&lt;/div&gt;&nbsp;&nbsp;&nbsp;&nbsp; <br/>&nbsp;&nbsp;&lt;/div&gt;&nbsp;&nbsp; <br/>&nbsp;&nbsp;&lt;script&gt;&nbsp;&nbsp; <br/>&nbsp;&nbsp;var&nbsp;&nbsp; ii=0;t=demo_b.scrollTop&nbsp;&nbsp; <br/>&nbsp;&nbsp;demo2_b.innerHTML=demo1_b.innerHTML&nbsp;&nbsp; <br/>&nbsp;&nbsp;function&nbsp;&nbsp; qswhMarqueea(){&nbsp;&nbsp; <br/>&nbsp;&nbsp;if&nbsp;&nbsp; (ii==1)return&nbsp;&nbsp; <br/>&nbsp;&nbsp;if(demo2_b.offsetTop-demo_b.scrollTop&lt;=0)&nbsp;&nbsp; <br/>&nbsp;&nbsp;demo_b.scrollTop-=demo1_b.offsetHeight&nbsp;&nbsp; <br/>&nbsp;&nbsp;else&nbsp;&nbsp; <br/>&nbsp;&nbsp;demo_b.scrollTop++&nbsp;&nbsp; <br/>&nbsp;&nbsp;}&nbsp;&nbsp; <br/>&nbsp;&nbsp;setInterval(qswhMarqueea,150)&nbsp;&nbsp; <br/>&nbsp;&nbsp;&lt;/script&gt;&nbsp;&nbsp; <br/>]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=272</link>
			<title><![CDATA[网页背景音乐连续播放代码]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Fri,19 Dec 2008 10:07:42 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=272</guid>	
		<description><![CDATA[我们在编网页有时会碰到这么一个问题，做了几个页面，放上背景音乐，点超链接到另一个网页音乐就会重新开始放。。现在我找到一个办法，可以连续播放网页背景音乐。。<br/><br/>用网页的框架可以实现这个功能。。。。<br/><br/>先建一个bgsound.htm文件，代码如下<br/>&lt;bgsound src=&#34;音乐地址&#34;&nbsp;&nbsp;loop=&#34;2&#34;&gt;<br/><br/>再建一个index.htm框架页面<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;html&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;head&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;title&gt;框架页&lt;/title&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;meta http-equiv=&#34;Content-Type&#34; c&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;/head&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;frameset rows=&#34;0,*&#34; frameborder=&#34;NO&#34; border=&#34;0&#34; framespacing=&#34;0&#34;&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;frame name=&#34;topFrame&#34; scrolling=&#34;NO&#34; noresize src=&#34;bgsound.htm&#34; &gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;frame name=&#34;mainFrame&#34; src=&#34;main.htm&#34;&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;/frameset&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;noframes&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;body bgcolor=&#34;#FFFFFF&#34; text=&#34;#000000&#34;&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;对不起，你的浏览器不支持框架的显示。<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;/body&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;/noframes&gt;<br/>&nbsp;&nbsp;&nbsp;&nbsp; &lt;/html&gt;<br/><br/>这是框架页的源代码，其中bgsound.htm是设置背景音乐的页面，而main.htm是显示在框架中的页面内容。<br/><br/>这样背景音乐可以在你看网页时连续播放了。。（但此方法适合于设置在当前网页打开新网页，否则当<br/><br/>你把前面的网页关闭了后 ，，背景音乐就没了！)<br/><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=267</link>
			<title><![CDATA[marquee基本语法的全解释]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Tue,11 Nov 2008 09:03:42 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=267</guid>	
		<description><![CDATA[基本语法 <br/>&lt;marquee&gt; ... &lt;/marquee&gt; <br/>移动属性的设置 ,这种移动不仅仅局限于文字，也可以应用于图片，表格等等<br/><br/>方向 <br/>&lt;direction=#&gt; #=left, right ,up ,down &lt;marquee direction=left&gt;从右向左移！&lt;/marquee&gt; <br/><br/>方式 <br/>&lt;bihavior=#&gt; #=scroll, slide, alt&#101;rnate &lt;marquee behavior=scroll&gt;一圈一圈绕着走！&lt;/marquee&gt; <br/>&lt;marquee behavior=slide&gt;只走一次就歇了！&lt;/marquee&gt; <br/>&lt;marquee behavior=alt&#101;rnate&gt;来回走&lt;/marquee&gt; <br/><br/>循环 <br/>&lt;loop=#&gt; #=次数；若未指定则循环不止(infinite) &lt;marquee loop=3 width=50% behavior=scroll&gt;只走 3 趟&lt;/marquee&gt; &lt;P&gt; <br/>&lt;marquee loop=3 width=50% behavior=slide&gt;只走 3 趟&lt;/marquee&gt; <br/>&lt;marquee loop=3 width=50% behavior=alt&#101;rnate&gt;只走 3 趟！&lt;/marquee&gt; <br/><br/>速度 <br/>&lt;scrollamount=#&gt; &lt;marquee scrollamount=20&gt;啦啦啦，我走得好快哟！&lt;/marquee&gt; <br/><br/>延时 <br/>&lt;scrolldelay=#&gt; &lt;marquee scrolldelay=500 scrollamount=100&gt;啦啦啦，我走一步，停一停！&lt;/marquee&gt; <br/><br/>外观(Layout)设置 <br/><br/>对齐方式(Align) <br/>&lt;align=#&gt; #=top, middle, bottom &lt;font size=6&gt; <br/>&lt;marquee align=# width=400&gt;啦啦啦，我会移动耶！&lt;/marquee&gt; <br/>&lt;/font&gt; <br/><br/>底色 <br/>&lt;bgcolor=#&gt; #=rrggbb 16 进制数码，或者是下列预定义色彩： <br/>Black, Olive, Teal, Red, Blue, Maroon, Navy, Gray, Lime, <br/>Fuchsia, White, Green, Purple, Silver, Yellow, Aqua &lt;marquee bgcolor=aaaaee&gt;颜色！&lt;/marquee&gt; <br/><br/>面积 <br/>&lt;height=# width=#&gt; &lt;marquee height=40 width=50% bgcolor=aaeeaa&gt;面积！&lt;/marquee&gt; <br/><br/>空白 <br/>(Margins)&lt;hspace=# vspace=#&gt; <br/>&lt;marquee hspace=20 vspace=20 width=150 bgcolor=ffaaaa align=middle&gt;面积！&lt;/marquee&gt;<br/>]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=261</link>
			<title><![CDATA[服务器设置问题]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Thu,19 Jun 2008 15:29:37 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=261</guid>	
		<description><![CDATA[公司服务器被黑客攻了，做安全配置的时候，有以下几点下次重新安装的时候值得注意：<br/>一、防火墙需要开设的端口，一个不小心，设置不好，很可能就成为恶意攻击的大门。。<br/><br/><img src="http://www.haoblogs.com/attachments/month_0806/c2008619144932.gif" border="0" alt=""/><br/><br/>1、21端口：21端口主要用于FTP，因为有的FTP服务器可以通过匿名登录，所以常常会被黑客利用。另外，21端口还会被一些木马利用，如果不架设FTP服务器，不安装Serv-U建议关闭21端口。<br/><br/>2、25端口：25端口为SMTP，主要用于发送邮件，利用25端口，黑客可以寻找SMTP服务器，用来转发垃圾邮件。<br/><br/>3、80端口：80端口是为网站端口，服务器一般必须要开的端口。<br/><br/>4、110端口：如果客户用outlook等软件接收邮件，此端口必须开放。是为POP3（邮件协议3）服务开放的<br/><br/>5、3389端口：是终端服务的端口（即远程桌面）<br/><br/><img src="http://www.haoblogs.com/attachments/month_0806/3200861915214.gif" border="0" alt=""/><br/><br/>二、网站文件夹权限问题<br/>1、静态网站，需增加IUSR（Internet来宾帐户）和IWAM（启动IIS进程帐户）权限如下即可<br/><img src="http://www.haoblogs.com/attachments/month_0806/62008619152449.gif" border="0" alt=""/><br/><br/>2、而带后台的网站需要增加需增加IUSR（Internet来宾帐户）和IWAM（启动IIS进程帐户），权限需要另外增加修改和写入权限即可。。]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=245</link>
			<title><![CDATA[全球最值得听的100首英文歌]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Tue,08 Apr 2008 12:08:31 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=245</guid>	
		<description><![CDATA[本人也非常喜欢听英文歌曲，像Lemon Tree，She，Tired of Being sorry，baby one more time等，所以看到如此精典的特意转来分享~~<br/><br/>1. don&#39;t cry--guns n&#39; roses我所认真听完的第一首摇滚,这首歌曾唱哭了千万人。总是能够触痛了心底最软的地方，心抽痛着,眼圈红了，却没有眼泪渗出，每多听一次就多一次的依恋...<br/><br/><br/>2. fade to black--ＭＥＴＡllic金属乐队也有很经典歌曲,我相信国内有好多人都是听了这首歌的前奏才去学吉他的!ＭＥＴＡLLICA经典中的经典,也是ＭＥＴＡLLICA饱受争议的作品,因为当时有乐迷自杀就是出于这首歌，胆小别听哦~<br/><br/><br/>3. dreaming my dream--cranberries有着王菲一样变幻倚俪的唱腔，高雅离开了原本浩渺的苍穹来到人间，它带着冷漠的美艳，但又说着人身上的变动和永恒，爱尔兰的卡百利乐队就这样汲取了精灵与传说的浩渺气质，沟通了人间和天空的美，把人的故事，爱情，历史，死亡，社会都融进那飘忽而真切的女声中...(卡百利，本是蔓声浆果的藤蔓)<br/><br/><br/>4. dying in the sun--cranberries不断地重复着放这首歌,简短迂回的旋律,简短迂回的歌词。我就平躺在这样的歌里,晕乎乎的,渴望在阳光下睡死...<br/><br/><br/>5. never grow old--cranberries 最近常听朋友们说时间过得好快~! 感觉自己在一天一天的虚度光阴! 不由得想起了这支歌~!<br/><br/><br/>6. far away from home--groove coverage德国新晋乐队,这首歌已被众多知名DJ誉为当今舞曲最为精华的传世之作，听了不下几百遍了，旋律好的很，女声好的很...<br/><br/><br/>7. knocking on heaven&#39;s door--guns n&#39; roses(“野蛮师姐”主题曲)艾薇儿翻唱的和枪花版的都给人一种爽歪的感觉，当然女生版的更加恬静，睡觉之前我都要听的。<br/><br/><br/>8. imagine--john lennon约翰列侬是全世界最成功的摇滚乐队“甲壳虫”(beatles)的灵魂人物，死于1980年12月8日，是被一名狂热的歌迷开枪打死的，他的死震惊了世界，他在六十年代吸毒，目无宗教和go-vern-ment，在七十年代致力研究东方宗教和宣扬童话般的爱(有一颗小星星是以他的名字命名的)，这声音听来象预言者的祈祷，而歌词依然是固执的理想，或许列侬所要求的泰国绝对，太过纯洁，但作为梦，难道你我就不曾有过吗？<br/><br/><br/>9. yesterday--beatles这么经典的还说什么呢，电台点播率已经超过一亿次了，没听过的太逊了。<br/><br/><br/>10. let it be--beatles昔日创下了榜史纪录,也是Beatles解散时成员们的心态写照。有时候生命的意义在于过程,至于结果就让它Let it be...<br/><br/><br/>11. it&#39;s my life--bon jovi我比较早喜欢的一首歌..曾用来做CS的MTV背景音乐。<br/><br/><br/>12. that&#39;s why(you go away)--meachael learns to rock半路在一家美发店的门前听到了that&#39;s why (you go away)的钢琴版!!! 感觉很好,这样听起来That&#39;s why就更经典了! (放的声音越大越有感觉哦)<br/><br/><br/>13. you can&#39;t say(韩剧&#34;爱上女主播&#34;主题曲)相信大家对这首歌不会感到陌生了哦!!!我是不会歌词的，但每旋律一起就能体会其中的柔情...<br/><br/><br/>14. yesterday yes a day 温柔醇厚的声音,静静地用心体会,很舒服的21岁的挪威女孩marlin,自己写歌自己唱,一首充满浪漫气息的法国歌曲,就像爱人在你耳边轻轻呢喃,超好听的...<br/><br/><br/>15. heal the world--meachael kjackson他是疯狂热爱和不羁职责的承受者，年轻的巨富，心理怪异而各声纯洁的奇人，他富于创造，不向任何一个流派*拢，虽然,杰克逊现在的形象不好,但他曾经为世界的慈善事业作了很大的贡献,这首歌也正是他心意的表现吧...最起码他在音乐方面的高度是谁都无法否认的。<br/><br/><br/>16. the girl is mine--meachael jackson.纯洁的仿佛童话，干净的让人不敢呼吸...<br/><br/><br/>17. delicious way--仓木麻衣。我本人也十分仇恨日本人的，但是听到这么纯洁的歌曲感觉到音乐真的是没有国界的哎~~<br/><br/><br/>18. under the sea小美人鱼(the little mermaid)插曲,可总感觉张邵晗唱的更有活力。再听听原唱的，就知道东西方文化的差异在哪里了。<br/><br/><br/>19. fighter--Christina 厚重有力的嗓音穿透着我的耳膜,装饰着闪亮碎钻的眼眸冲击着我的视网膜...希望有一天,我能够成为那个fighter... 蛮有爆发力的一首歌。<br/><br/><br/>20. without you--mariah carey我喜欢的歌星！因为她在唱功方面显得极为细腻,而且她的声线真的是性感迷人而且非常有爆发力和感染力...~~这是高音上唯一可与i will always love you媲美的歌，下面还有一首两人合唱的，绝对体现唱功哦~~<br/><br/><br/>21. when you believe--mariah carey n&#39; whitney houston不多说了，任何人都唱不成这样的。<br/><br/><br/>22. Crying in the Rain大概算的上是欧美最具生命力的情歌之一了，这首出自民谣女歌手Carole King的作品对原来舒缓深情的作品来了一次颠覆性的改造...<br/><br/><br/>23. never say goodbye--Hayley Westenra充满曼陀铃和竖琴声音的歌曲当中透显出一个宁静而美丽的少女形象，歌曲是从爱尔兰传统歌曲中改编过来，Hayley Westenra的声音如同丝线一般，在演唱技巧上更已达到完美的境地，而嗓音天生的优美更是让人不得不赞叹和艳羡。<br/><br/><br/>24. Sugar Ray&#39;s Someday。Sugar Ray(据说应该翻译作“拔丝”乐队-_-bbb)，他们的音乐风格用一个字就可以形容——Summer，他们只在夏天出片，歌儿一听就让人想起夏天——总是阳光明媚、活泼愉快。与此相反的，他们的歌词却是比较深的，那个身上有着13个纹身、英俊得完全不像个rock band主唱的Mark McGrath经常用很夸张的肢体语言在MTV中摇摆，加上十分十分正宗的传统摇滚式配器，恐怕在今天活着的乐队中找不出第二个这样的band。<br/><br/><br/>25. Iris-- Goo Goo Dolls清脆急促的吉他solo，John Rzeznik饱含沧桑的低沉嗓音，对世事、爱情满腹的疑问，后面的爆发，“And I don&#39;t want the world to see me, &#39;Cause I don&#39;t think that they&#39;d understand. When everything&#39;s made to be broken, I just want you to know who I am!” 这是有着无穷韵味的箴言。<br/><br/><br/>26. Mystical Machine Gun--Kula Shaker比较难得的是，Kula Shaker的音乐受了很多东方思想的影响，这一点同时表现在歌词、音乐和配器之中。乐队唯一真正意义上的专辑就是《Peasants, Pigs &amp; Astronauts》专辑干净的声音，迷幻的吉他，如印度梵音般的和声，充满现场感的录音，总之在当时背景下，属于绝对的异类。<br/><br/><br/>27. Elemental--tears for fears.其实只是主唱oland o&#114;zab一个人而已，整张专辑所有词曲、每一轨录音(器乐、主唱、和声)全部出自这家伙一人之手(口)，真是吓了一跳(原来世界上真的有全才啊)！<br/><br/><br/>28. gone away--the off spring是一个比较有争议的乐队。跟99%的美国摇滚乐队一样，也是来自学校同学的组合，经过很长时间的地下活动，终于走到地上，给人留下最深刻印象就是主唱Bryan Holland的十分金属化的硬朗狂放的唱腔,歌词有着对世事无情的玩弄和嘲讽。<br/><br/><br/>29. A Question Of Lust--peche Mode很容易和“冷”这个字联系起来，冷冰冰的纯电子音乐，冷冷的唱腔，冷僻的歌词，似乎特别适合目前这个季节来听...<br/><br/><br/>30. this is how we do it蛮欢快的一首现代英文混音dj舞曲，偶个人比较喜欢。<br/><br/><br/>31. boom boom boom各位爱跳舞的朋友，这就是你们的音乐，做为音乐和舞蹈的信徒，你们起床要放的音乐。<br/><br/><br/>32. Earth song--meachael jackson请保护大自然!~ 崇高的敬意!~ 看过mv后真的感觉心里堵堵的...<br/><br/><br/>33. everybody dance now相信看过韩国综艺节目情书的朋友不会陌生吧~里面好多背景音乐就是用的这个，尤其是uncle shin的抖动dance甩你的双手，很简单的一个步骤，音乐炸进你的头，活着就要开心些嘛！！！顺便说一下，我超级喜欢那个张英兰~~~~<br/><br/><br/>34. the day you went away--M2M是当之无愧的小甜甜咯，相信谁都不会忍心伤害这样的女生，不过歌词有点伤感，我们从来都不知道珍惜所拥有的直到永远的失去它,将如何承受这种痛苦,现在，我不得不说，我是真的真的失去了你...<br/><br/><br/>35. when you say nothing at all--Krauss多次被评为世界最美的女声,坐拥11座格莱美奖,被无数人翻唱过... 男孩地带的也同样也是不可错过的哦！<br/><br/><br/>36. hero--enrique iglesias出生在马德里,有着西班牙人独有的深邃的双眸,冷峻而又性感的脸庞,富有磁性的嗓音,再加上他那令人神魂颠倒的外表...<br/><br/><br/>37. god is a girl--groove coverage从个人角度看sweetbox和groove coverage是给我印象最深的两个女唱乐队，下面还有几首歌都是她们的，很喜欢女主唱有些慵懒而很清脆的声音,他们的风格...喜欢听这种节奏感强，比较热闹的歌曲。觉得这个乐队的风格还是挺新鲜的，也比较大众化，应该会有不少朋友会喜欢，因为大众不等于庸俗。<br/><br/><br/>38. she--groove coverage<br/><br/><br/>39. can&#39;t get over you--groove coverage<br/><br/><br/>40. 7 years and 50 days--groove coverage<br/><br/><br/>41. encore une fois--helene segara一首抒情法语歌,哀而充满无奈的歌,你能体会到它的忧伤,也许有一天我会离开你,途跋涉寻找真的自己也许有一天...也许有一天...<br/><br/><br/>42. je m appelle helene--helene rolls听了首法语歌后觉得法语太美了,让人感觉说法语的人嘴上摸了奶油,...于记忆深处,要我找到简单的爱情,于我的爱情,歌词中有着淡淡的伤感...<br/><br/><br/>43. here i am--bryan adams那是布赖恩亚当斯的作品,我想大家应该都听过他那首绝对经典的歌“( Everything I Do )吧，这个帅帅的沧桑男人的声音是谁都无法抗拒的哦。<br/><br/><br/>44. Everything i do--bryan adams不多说了，绝对经典中的经典。<br/><br/><br/>45. all that you can&#39;t leave behind--毫无疑问,U2是80年代英国最受欢迎的摇滚乐团,不过我个人只喜欢这一首，具体也说不出为什么，可能感觉声音和旋律搭配的很棒吧~~<br/><br/><br/>46. big big world--Emilia看上去是一个爱整洁的乖女孩,尤其在唱“Big,Big World”这样的慢歌时,她显得十分纯情而古典。目前Emilia的唱片在瑞典已卖过了3白金的数量。而首支单曲“Big,BigWorld”则成为了瑞典历史上流行速度最快的一支...<br/><br/><br/>47. right here waiting--rachard max这是一首很经典的老歌,歌唱了刻骨铭心的爱情... 这是我曾经最爱的一首老歌,相信每个人也都听过无数遍,但依然是...<br/><br/><br/>48. stay--williams(野蛮师姐主题曲)特别特别特别的欢快，每次不知道为了什么一心烦就不由自主想听这首歌,连我们宿舍一个平时不怎么愿意听歌的哥们也喜欢上了这首...<br/><br/><br/>49. live forever--Oasis 是近十年来英国最受欢迎和最受评论家承认的乐队之一;live forever是我朋友推荐给我的，听过后感觉真的很不错呢...<br/><br/><br/>50. life for rent--dido清爽的时节,清爽的女孩儿,清爽的音乐。Life for rent，把整个生命都出租出去，不属于任何人，无根地飘荡，听起来有一些伤感。<br/><br/><br/>51. promise don&#39;t come easy跟着CD慢慢的哼着，记不清楚是什么时候第一次听了，若有若无的思绪缠绕着自己，象梦一样。<br/><br/><br/>52. lonely--nana是一首黑人说唱歌曲,同时加入了R&amp;B和Blues的曲风,歌曲的当中还有女声的伴唱,旋律非常优美。不会再有第二首歌可以超越...歧视,家庭的破碎...<br/><br/><br/>53. dilemma--kellyrowland与饶舌巨星nelly搭档演唱的歌曲，这首歌曲虽然风格老套，但仍然在全美电台创下近两个月蝉联冠军宝座的纪录。<br/><br/><br/>54. you took my heart away舒缓的节奏，简洁的编曲，十足的优美旋律，都展现了mltr最擅长的迷人功力。<br/><br/><br/>55. helene segara-encore une fois一首经典法语歌，同样将法国浓郁的浪漫气息，法国当红歌手helene segara 专辑,她的音乐和她的人一样别有风情。她的嗓音并不是十分突出，但声音中有一种魅惑迷离的特质。<br/><br/><br/>56. sealed with a kiss 以吻封缄，经典美国乡村音乐，一首极具浪漫色彩的老歌，叙离别情，但不伤感；道分手苦，但不低沉。饱尝相思之苦的恋人们听来，肯定别有一番滋味...<br/><br/><br/>57. only time--enya无由的哀愁随着Only Time的歌声涌上心头。而当爱情灭绝﹑心泣莫名﹑欲盖弥彰的绝望凄清，却只有时间为唯一的目击者...<br/><br/><br/>58. i will be missing you记得第一次听它的时候，只记得旋律很HIP-POP，直到后来无意中才知道了它的来历。于是找来下载，听，一遍又一遍。<br/><br/><br/>59. civil war--guns n&#39; roses在美国这样一个国度，一支摇滚乐队创作出这样一首忧国忧民(当然也可以理解成激愤)的歌曲，这不是对摇滚乐的反判，恰恰是对摇滚更好的诠释。我想，摇滚乐在国外之所以有那么高的地位正是由于国外的很多摇滚乐队有着对社会、对国家的主人精神以及对音乐的深入理解和精彩绝伦的演绎。国内呢？只有流行乐泛滥罢了，摇滚不光是非主流，几乎成末流了...悲哀啊...<br/><br/><br/>60. sunny came home1998年葛莱美大奖获奖作品,现在已很难找得到这样动听的旋律了.<br/><br/><br/>61. the one--Mr big每首歌曲中都有一段经典耐听的吉他SOLO。我想有这一首歌就足以流芳百世了,即使多少年以后,这首歌也会引起人们无限的共鸣。<br/><br/><br/>62. to be with you--Mr big几乎所有的吉他教材都可以看到这首《与你同在》，这首歌用木吉他超越了轰鸣，用随便超越了夸张，用一群拍着首合唱的小伙子超越了舞台上的超级巨星...时间总会流逝，浪漫和现实，究竟哪一个会与你同在呢？<br/><br/><br/>63. stop crying your heart out--oasis称不上经典，但是也总能给人一种疲倦到不想说什么的地步，如过明天我死了...<br/><br/><br/>64. cinderella太鄙视SHE的媚日情节，所以只好听英文版的这首半糖主义，不过发现比她们唱的好听一百倍！！！<br/><br/><br/>65. the sound of silence是奥斯卡最佳电影《毕业生》的主题歌,是美国流行音乐大师保罗西蒙的代表...我相信，一百个人当中会有一百个人喜欢听这歌的。<br/><br/><br/>66. should it matter--sissel kyrkjeb我喜欢这个低调又华美的女子,淡淡的感觉，仔细听可以听出性感哦！<br/><br/><br/>67. stuck in my heart旋律很优美，中间有一段很完美的合声。<br/><br/><br/>68. utopia--sweetbox下面三首歌都是出自sweetbox的，丢失了以后心疼到现在呢，哪位哥哥姐姐能知道哪里下的到一定告诉小弟哦，谢谢咯！！！他们的歌曲都巧妙地融合Pop、搖滾音乐，行雲流水的律动帶出女主唱Jade戏剧性的歌声，不仅开启歌迷的想像空间，而且扣人心弦，真的不动心都不行啊...<br/><br/><br/>69. alright--sweetbox<br/><br/><br/>70. one kiss--sweetbox<br/><br/><br/>71. dreams come true--ses被无数个电台做过无数次的背景电乐，旋律响起你就知道你肯定听过的...<br/><br/><br/>72. sweet dream很喜欢的一首歌了,张娜拉长的实在是太可爱了,有条件的朋友可以去找下这个MV看下,相当不错哦~~<br/><br/><br/>73. back to you--bryan adams不多说了，布莱恩.亚当斯的每一首歌都那么经典...<br/><br/><br/>74. forever and ever-because i love you。绝对好听，因为dido就是因为这首歌红的。<br/><br/><br/>75. Say It Isn&#39;t So--bon jovi硬汉唱的柔情歌曲也蛮感人的嘛~~<br/><br/><br/>76. now and forever--richard max可能大家很少听他的歌吧`~`其实他的歌真的很不错！希望能和大家一起分享啊！<br/><br/><br/>77. angle of mine一个很老的乐队唱的,具体名字我忘了,超好听。<br/><br/><br/>78. dream cranberries就是大名鼎鼎的卡百利乐队 ...这首《Dream》选自他们第一张专辑王菲曾经翻唱过,翻唱得...我都听不出真假...可惜每次出去唱王菲的歌都感觉在糟蹋音乐哎~~<br/><br/><br/>79. faint--linkin park林肯公园,乐队名字是因为每天乐队的例行练习结束回家时,他都会驾车路过林肯公园,重要的是,他们的平均年龄不过二十出头哦...他们的音乐给人蛮另类的感觉<br/><br/><br/>80. somewh&#101;re i belong--linkin park节奏蛮快然后有点另类的歌。<br/><br/><br/>81. *****--meredith brooks开朗轻快的曲风很讨人喜欢，名字(妖精)是不好听了一点点，但整首歌却是有一点我行我素，特立独行并不会为任何人改变。<br/><br/><br/>82. westlife有一段时间,很喜欢Westlife的歌,每天在他们的歌声中吃饭，看书，入睡。<br/><br/><br/>83. the power of love--celion dion提起席琳迪翁(Celine Dion),大家都知道她的演唱以倾情投入而闻名于世,她的音色极具表现力,声域宽广，很有张力，最喜欢的歌曲,，完美的歌曲。<br/><br/><br/>84. a new day has come--celion dion她以满腔的爱与希望蕴育出另一个炽热的生命，她歌唱生涯中第八张英文专辑「a new day has come真爱来临」，在细腻悠扬、情感丰沛的歌声中，感受到旺盛的生命能量，热烈地传送到世界每个角落。<br/><br/><br/>85. more than word*--**treme被翻唱了无数遍的歌，只用一把木吉他伴奏，但他高贵的气质却随着真情流露，胜过了有着华丽织体的热闹声音，当然，这首歌最迷人的，还是天衣无缝的合声部分--那轻轻的，起伏的，隐现并滑翔而逝的伴唱，只有真正胸怀开阔，品位脱俗的人才能这样写情歌，也只有真正温柔可爱的人才值得被这样的歌声围绕。<br/><br/><br/>86. killing me softly with his song--roberta flack 由于年代久远，这首歌不可避免地带上了留声机时代遗留下来的贵族味道，一遍遍地重复“killing me softly with his song”，她已经醉了，已经无力逃脱了，她更象是自言自语，捧着胸口喃喃自语而脑子里眼睛里全是他全是他全是他啊...<br/><br/><br/>87. can you feel the love tonight--Elton joh工整清晰的吐字，彬彬有礼的抒情，不紧不慢的钢琴，只能有那些拥有严谨文化传统的中老年英国人来展现。<br/><br/><br/>88. lemon tree--fool\\&#39;s gardon5个得国小伙子组成的“傻子花园”乐队，可根本没想过要写一首叫做《柠檬树》的英文歌，给一个台湾女孩子(苏慧伦)翻唱成中文版，在这个东方大国漂起！“ i wonder how, i wonder why, yesterday you tell me about the blue blue sky...”<br/><br/><br/>89. vincent--don mclean这位歌词有着诗一样已经的青年为人了精神殉道者，荷兰后印象派画家，伟大的疯子文森特梵高献上了感人的一曲，这首歌唱到了艺术家的孤独和世人的不义，唱到了崇高的痛苦和爱，唱到了内心矛盾，唱到了神，宁静和永远...<br/><br/><br/>90. one love--bob marley他用歌声带给人快乐，并为公正而斗争，这样的一生足以使任何一位歌者在死神面前保持尊严，牙买加总统参加了他的葬礼。<br/><br/><br/>91. careless whisper--wham威猛是中国改革开放以来最早接受的西方流行音乐，现在听来真的是别有一番滋味。<br/><br/><br/>92. don&#39;t cry for me, argentina--maonna她卖弄性感，出售神圣？可是她并不比任何人虚伪，当她撕开人们的虚伪时，我们听到的是一副越唱越好的嗓子，和一种越来越真实的性格。阿根廷前总统夫人依维塔确有一生传奇的经历--寒门女子最终身居国母，用圣洁的博爱感动了整个国家，她为穷人所做的一切，她的真诚和无私，在歌声得到了永生。<br/><br/><br/>93. two steps behind--defleppardKB海峡拥有高超的不鲁斯吉他技巧，低沉嗓音的半说半唱，成熟睿智的歌词，以及难以言表的宽厚情怀，整个八十年代，不知多少人依*他们的音乐，完成了由青春向成年的过渡，不知多少人被那悠远延绵的意境带走，超脱于现实的无聊纷争...<br/><br/><br/>94. no more i love you--annie lennox此人于1995年推出了专辑“Medusa”(《美杜莎》)美杜莎，是希腊女神中最狰狞古怪的一个，把超人的魔力给了这个歌手，让她有力，跌宕起伏，在我们想象之上拖曳高音，延续着从唯美派文学到新古典音乐的影响，也徘徊在艺术和商业之间，沟通着尘世的想象。<br/><br/><br/>95. my heart will go on--celine dio*我深信，这是即使小学生也听过而且非常喜欢的一首歌。<br/><br/><br/>96. ***sing you now--meachael bolton这个男人具有轻易征服听众的才能，曾是美国电台播放给“面的”司机听的最佳人选，可以用最直接的方法来美化我们的听觉，而且，我们根本无须费心去听，只要跟着，哼着，忙自己的，快乐就产生了。<br/><br/><br/>97. yesterday once more唱者卡伦卡彭特被称为美国的邓丽君，当她死于神经性厌食症时，人们突然发现，在所有那些包装精良，华美诱人的热门金曲中，可能只有卡伦卡彭特的声音值得被收藏，她把悠长的旋律唱得光芒耀眼，即使怀旧，都充满了对生活的感恩，她的歌声始终在呼唤人们热爱的本能。<br/><br/><br/>98. goodbye--air supply 80年代最受欢迎的一对组合,他们高低的配合优美的歌词动听的旋律令人难以抗拒。喜欢这样凄美华丽的声音，唱出那句痛彻心肺的“There&#39;s no other way than to say goodbye”<br/><br/><br/>99. your song--Elton john平滑流畅的钢琴和Elton john淡淡柔情的演唱，似乎就是和爱人相拥坐在黄昏中的木屋顶，看远处夕阳西下，与世上最最甜美的双眸对望，任似水年华静静流淌，这时不用很多钱，不用大房子，只要有一首由爱人所唱，但却只属于自己的歌就足够了...<br/><br/><br/>100. hotel california--Eagles我喜欢那充满磁性的嗓音，木吉他弹奏出简单幽怨的调子外，我想，喜欢它的另一个理由便是对回忆的孤独感受。这样的曲子，适合一个人听，一遍又一遍地重听，随乐韵飘荡到广袤却寂寥的.<br/><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=232</link>
			<title><![CDATA[值得收藏的实用网址]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Thu,10 Jan 2008 14:47:49 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=232</guid>	
		<description><![CDATA[<p>由 <a href="http://www.makeuseof.com/tag/40-unusual-websites-you-should-bookmark-2/" target="_blank" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">MakeUseOf</a>&nbsp;精心挑选出来的40个好站精心挑选出来的40个好站,我看了一下,确实都是非常非常实用和好玩的网站,值得收藏.</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#cc0000" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Top10</font></strong></p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">1.</strong> <a href="http://www.befunky.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">beFunky</font></a>&nbsp; - 可以将图片转换成漫画风格的图片。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">2.</strong> <a href="http://www.displaywars.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">DisplayWars</font></a>&nbsp;- 用图形的方式帮你对比不同比例和尺寸的显示器的显示大小。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">3.</strong><font color="#274acc"> </font><a href="http://www.docsyncer.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">DocSyncer</font></a>&nbsp;- 帮你把电脑中的office文件同步到google doc 中。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">4.</strong> <a href="http://www.jotyou.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">JotYou</font></a> - 给其他人发送信息，只有你指定区域的人才能收到此信息。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">5. </strong><a href="http://www.keybr.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">Keybr</font></a>&nbsp;- 一个在线练打字的网站。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">6.</strong> <a href="http://mint.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Mint</font></a>&nbsp;- 在线财务管理，方便你理财。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">7.</strong> <a href="http://numbr.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Numbr</font></a> - Free disposable phone numbers（可任意使用的电话号码？不知道干什么用的。）</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">8.</strong> <a href="http://pdfhammer.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">PDFHammer</font></a> - 在线PDF文档编辑。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">9.</strong> <a href="http://www.phonespell.org/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">PhoneSpell</font></a> - 帮你记忆电话号码。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">10.</strong> <a href="http://www.secondrotation.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">SecondRotation</font></a><font color="#274acc"> / </font><a href="http://www.buymytronics.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">BuyMyTronics</font></a> - 收购二手电子产品，坏的也要！</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#cc0000" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">其他</font></strong></p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">11. </strong><a href="http://beam-it-up-scotty.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">BeamIt</font></a> - 将图片、音乐、视频或者文档以短信的方式发送到手机。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">12.</strong> <a href="http://www.booksinmyphone.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">BooksInMyPhone</font></a> - 下载免费的手机电子书。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">13.</strong> <a href="http://www.callthefuture.org/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">CallTheFuture</font></a> - 在指定的时间给手机发送短信或者语音。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">14.</strong> <a href="http://camerasummary.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">CameraSummary</font></a> - 上传图片后，能够得到图片的各种详细信息。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">15.</strong> <a href="http://www.canyourunit.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">CanYouRunIt</font></a> - 测试你的电脑配置能否跑动某些游戏。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">16.</strong> <a href="http://www.cellswapper.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">CellSwapper</font></a> - 转让手机合同？估计中国用不了。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">17.</strong> <a href="http://www.civilanswers.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">CivilAnswers</font></a> - 法律咨询，不过是国外的哦。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">18.</strong> <a href="http://controlc.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">ControlC</font></a> - 可以把你本地 Ctrl+C 复制的内容，同时上传到网上空间。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">19.</strong> <a href="http://definr.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">Definr</font></a>&nbsp;- 在线英英词典，查询速度非常快，平均14ms。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">20.</strong> <a href="http://www.drop.io/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">Drop.io</font></a> - 网络存储空间，可设定密码，有效期等。简单易用。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">21.</strong> <a href="http://www.xnet.se/fd/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">File-Destructor 2</font></a> - 可以帮你制作损坏文件，这样，有没有完成的工作，制作一个损坏的word，就可以拖延了</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">22.</strong> <a href="http://file-encryptor.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">File-encryptor</font></a> - 在线加密/解密，使用方便。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">23.</strong> <a href="http://www.flashphone.ru/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">FlashPhone</font></a> - 免费网络电话。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">24.</strong> <a href="http://google.com/gwt/n" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Google Mobilizer</font></a> - Google提供的手机网页服务。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">25. </strong><a href="http://www.getmyfbifile.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">GetMyFBIfile</font></a> - 查询你在FBI档案中的资料，太悬乎了。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">26.</strong><font color="#274acc"> </font><a href="http://www.lettermelater.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">LetterMeLater</font></a> - 定时发送邮件。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">27.</strong> <a href="http://www.mailbucket.org/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Mailbucket</font></a> - 把你的E-mail转换为Rss。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">28.</strong> <a href="http://www.mobical.net/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Mobical</font></a> - 备份你手机中的通讯录等资料。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">29.</strong> <a href="http://www.modazzle.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">MoDazzle</font></a> - 手机中的社会性网络平台。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">30.</strong> <a href="http://www.nanoscan.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Nanoscan</font></a> - 在线快速查毒。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">31.</strong> <a href="http://www.ohdontforget.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">OhDon&rsquo;tForget</font></a> - 它只做一件事，却做的非常好。那就是在制定的时间将短信发送到制定的号码。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">32.</strong> <a href="http://www.proquo.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">ProQuo</font></a> - 帮助你减少垃圾邮件。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">33.</strong> <a href="http://ppcalc.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">PPCalc</font></a> - Paypal费用计算。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">34.</strong> <a href="http://www.rondee.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Rondee</font></a> - 免费电话会议，不用下载任何软件。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">35.</strong> <a href="http://www.spokentext.net/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">SpokenText</font></a> - 将PDF、Word、纯文字、rss、电子邮件、网页转换成语音内容输出。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">36.</strong> <a href="http://www.sullr.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">Sullr</font></a> - 输入电话号码，查询电话的详细资料。只支持5个国家，没有中国。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">37.</strong> <a href="http://www.wakerupper.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">WakerUpper</font></a> - 安排好你的行程，WakerUpper会在制定的时间打电话提醒你。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">38.</strong> <a href="http://webmarkers.net/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">WebMarkers</font></a> - 将用户的文件转换为PDF，并存储到网络上的空间。需要安装小软件。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">39.</strong> <a href="http://www.whatshouldireadnext.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">WhatShouldIReadNext</font></a> - 书籍推荐服务。输入书名或作者，它会给出你一个推荐列表。</p>
<p removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><strong removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}">40.</strong> <a href="http://www.worldtaximeter.com/" removechild="function MyRC(arg1){var self = this;if (self.removeAttribute)self.removeAttribute(&quot;removeChild&quot;);var result = self[&quot;removeChild&quot;](arg1);self[&quot;removeChild&quot;] = arguments.callee; /*Finally restore the Override Function*/if(arg1.clearAttributes)arg1.clearAttributes();if(arg1.onclick)arg1.onclick=null;if(arg1.onmousemove)arg1.onmousemove=null;if(arg1.onmouseover)arg1.onmouseover=null;if(arg1.ondblclick)arg1.ondblclick=null;if(arg1.onmouseenter)arg1.onmouseenter=null;if(arg1.onmouseleave)arg1.onmouseleave=null;return result;}"><font color="#274acc">WorldTaxiMeter</font></a> - 帮你计算计程车的费用，这样就不会被宰了。不过只支持十个城市。&nbsp;</p>
<p>&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=187</link>
			<title><![CDATA[视角独特的商业摄影网站]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Mon,26 Nov 2007 12:53:10 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=187</guid>	
		<description><![CDATA[<a target="_blank" href="http://bonniehollandstudio.com/portfolio/">bonniehollandstudio</a>是一家提供商业摄影的网站，这上面有不少他们的作品，视角独到，个性鲜明，色彩绚丽。不足之处就是网页图片要横向拉动，对于浏览都来说相当不方便。<br/><a target="_blank" href="http://bonniehollandstudio.com/portfolio/"><img src="http://www.haoblogs.com/attachments/month_0711/l20071126125058.gif" border="0" alt=""/></a><br/><br/><br/><img src="http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/d1828/pic.jpg" border="0" alt=""/><br/><a href="http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/d1828/lnk.html" target="_blank">http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/d1828/lnk.html</a>]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=186</link>
			<title><![CDATA[瞬间倾心，恒久钟情]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Sun,25 Nov 2007 10:52:35 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=186</guid>	
		<description><![CDATA[推荐B&amp;T Studio（www.xxbt.com ）制作的东风本田CIVIC动画MV-《瞬间倾心，恒久钟情》<br/><br/>B&amp;T采用&#34;洛可可&#34;式的美术风格演绎MV，期望赋予CIVIC独特的气质--自由，轻松，浮华，绚丽<br/><br/>该短片画面真的相当绚丽,一看确实出自大师手笔,MV由陶喆作曲，张靓颖演唱，歌曲分为陶喆演唱版与张靓颖演唱版两个版本，陶喆演唱版收录在陶喆最新专辑《幻.爱》里<br/><br/>文件挺大,想看的朋友耐心等会喽`好的东西,我想等会,是绝对值得的~flash做到这种水平,国内真是不多的<br/><br/><a target="_blank" href="http://www.flash8.net/flash/28240.shtml">点击看flash页面</a><br/><br/><a target="_blank" href="http://www.flash8.net/flash/28240.shtml"><img src="http://www.haoblogs.com/attachments/month_0711/b20071126105143.gif" border="0" alt=""/></a><br/><br/><br/><img src="http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/ebe29/pic.jpg" border="0" alt=""/><br/><a href="http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/ebe29/lnk.html" target="_blank">http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/ebe29/lnk.html</a><br/><a target="_blank" href="http://www.feedsky.com/challenge/user.html?u=e9f0d388">点击这里给我投票</a><br/>]]></description>
		</item>
		
			<item>
			<link>http://www.haoblogs.com/default.asp?id=185</link>
			<title><![CDATA[测试你的脸和哪位明星像的网站]]></title>
			<author>yanzi123326@163.com(linzi)</author>
			<category><![CDATA[IT这一行]]></category>
			<pubDate>Sat,24 Nov 2007 10:22:41 +0800</pubDate>
			<guid>http://www.haoblogs.com/default.asp?id=185</guid>	
		<description><![CDATA[flash现在好多人越做越历害，很多新鲜有趣的东西慢慢出现在大家眼前。游戏,娱乐现在越来越有flash的身影.<br/><br/>今天介绍的这个网站正是一个有意思的东西，把你的照片上传上去，可以人脸辨识&nbsp;&nbsp;族谱研究 ,他们就会帮你分析你和那位明星相似。想不到我和张曼玉还有相似的地方，嘻嘻~~~<br/><br/>大家也去玩玩吧。生成后的地址可以直接贴到一些热门的应用门户网站去，非常方便。<br/><br/>网站地址：<a target="_blank" href="http://www.myheritage.com/">www.myheritage.com</a><br/><br/><br/><img src="http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/a0346/pic.jpg" border="0" alt=""/><br/><a href="http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/a0346/lnk.html" target="_blank">http://www.feedsky.com/challenge/art/506/feedsky/linzi/~/gtsp/zt1/a0346/lnk.html</a><br/><a target="_blank" href="http://www.feedsky.com/challenge/user.html?u=e9f0d388">点击这里给我投票</a><br/>]]></description>
		</item>
		
</channel>
</rss>