<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>::游鱼卷::</title>
		<link>http://www.ifublog.com/risaki/</link>
		<description>我们，都要有幸福起来的勇气。</description>
		<language>zh-CN</language>
		<pubDate>Sun, 31 Aug 2008 21:26:06 +0800</pubDate>
		<generator>Tattertools 1.0.6</generator>
		<item>
			<title>金河热力无限国庆倒数派对~~</title>
			<link>http://www.ifublog.com/risaki/49</link>
			<description>昨天晚上去看了“金河热力无限国庆倒数派对”~&lt;br /&gt;
&lt;br /&gt;
其实主要是冲着潘玮柏和许慧欣去看的~~不过也想看看马来西亚的国庆庆祝会是怎样的~&lt;br /&gt;
去的时候比较晚了，所以只看了9点半的明星演唱会&lt;br /&gt;
&lt;br /&gt;
人是超级多！场内必须要DiGi用户才可以换到票，可惜我是hotlink的~~不过在这里要谢谢那位不知名的男生换票让我们进到场内去看了~嘿嘿！虽然没有机会当vip坐着看，但站着也不算太远太远，基本看得清脸~~&lt;br /&gt;
&lt;br /&gt;
来的明星有李吉汉、温力铭、李志清、钟盛忠、黄威尔、James、罗忆诗、蔡旻佑、林宇中、潘玮柏和许慧欣~不过有很多……其实我都不认识？~~不过感觉大家的现场都唱得还蛮不错的~~&lt;br /&gt;
&lt;br /&gt;
整场演唱会从9点半开始一直持续到国庆日的凌晨快1点的样子~~感觉马来西亚的人们还是蛮热情的，情绪都很高涨~~而且大家都是打扮得美美的来参加啊~哈哈~&lt;br /&gt;
&lt;br /&gt;
现在放点照片给错过的亲们看哦~虽然照得不是很清楚~~将就了吧~&lt;br /&gt;
(请点击看大些的图哟~)&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/risaki/&quot;;function TTGallery(containerId)
{
	this.containerId = containerId;
	this.container = document.getElementById(this.containerId);
	this.container.style.filter = &quot;progid:DXImageTransform.Microsoft.Fade(duration=0.3, overlap=1.0)&quot;;
	this.container.style.textAlign = &quot;center&quot;;
	this.container.style.width = &quot;100%&quot;;
	this.container.instance = this;

	this.numImages = 0;
	this.imageLoaded = 0;
	this.offset = 0;

	this.src = new Array();
	this.caption = new Array();
	this.width = new Array();
	this.height = new Array();
	this.imageCache = new Array();
};

TTGallery.prototype.appendImage = function(src, caption, width, height)
{
	this.numImages++;

	var imageCache = new Image();
	imageCache.src = src;
	imageCache.onload = function() { var tmp = this.src; };

	this.imageCache[this.imageCache.length] = src;

	this.src[this.src.length] = src;
	this.width[this.width.length] = width;
	this.height[this.height.length] = height;
	this.caption[this.caption.length] = caption;
};

TTGallery.prototype.getControl = function()
{
	var control = document.createElement(&quot;div&quot;);
	control.style.marginBottom = &quot;10px&quot;;
	control.className = &quot;galleryControl&quot;;
	control.style.color = &quot;#777&quot;;
	control.style.font = &quot;bold 0.9em Verdana, Sans-serif&quot;;
	control.innerHTML = &#039;(&#039; + (this.offset + 1) + &#039;/&#039; + this.numImages + &#039;) &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_prev.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;PREVIOUS&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_enlarge.gif&quot; width=&quot;70&quot; height=&quot;19&quot; alt=&quot;ZOOM&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_next.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;NEXT&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt;&#039;;

	return control;
};

TTGallery.prototype.getImage = function()
{
	var image = document.createElement(&quot;img&quot;);
	image.instance = this;
	image.src = this.src[this.offset];
	image.width = this.width[this.offset];
	image.height = this.height[this.offset];
	image.onclick = this.showImagePopup2;
	image.style.cursor = &quot;pointer&quot;;

	return image;
};

TTGallery.prototype.getCaption = function()
{
	var captionText = this.caption[this.offset];
	captionText = captionText.replace(new RegExp(&quot;&amp;amp;?&quot;, &quot;gi&quot;), &quot;&amp;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;lt;?&quot;, &quot;gi&quot;), &quot;&lt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;gt;?&quot;, &quot;gi&quot;), &quot;&gt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;quot;?&quot;, &quot;gi&quot;), &quot;\&quot;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;#39;?&quot;, &quot;gi&quot;), &quot;&#039;&quot;);
	
	var caption = document.createElement(&quot;div&quot;);
	caption.style.textAlign = &quot;center&quot;;
	caption.style.marginTop = &quot;8px&quot;;
	caption.style.color = &quot;#627e89&quot;;
	caption.className = &quot;galleryCaption&quot;;
	caption.appendChild(document.createTextNode(captionText));

	return caption;
};

TTGallery.prototype.show = function(offset)
{
	if(this.numImages == 0) {
		var div = document.createElement(&quot;div&quot;);
		div.style.textAlign = &quot;center&quot;;
		div.style.color = &quot;#888&quot;;
		div.style.margin = &quot;10px auto&quot;;
		div.style.font = &quot;bold 2em/1 Verdana, Sans-serif&quot;;
		div.innerHTML = &quot;NO IMAGES&quot;;
		this.container.appendChild(div);	
		return;
	}

	if(typeof offset == &quot;undefined&quot;)
		this.offset = 0;
	else
	{
		if(offset &lt; 0)
			this.offset = this.numImages -1;
		else if(offset &gt;= this.numImages)
			this.offset = 0;
		else
			this.offset = offset;
	}

	if(this.container.filters)
		this.container.filters[0].Apply();

	this.container.innerHTML = &quot;&quot;;
	this.container.appendChild(this.getControl());
	this.container.appendChild(this.getImage());
	this.container.appendChild(this.getCaption());

	if(this.container.filters)
		this.container.filters[0].Play();
};

TTGallery.prototype.prev = function()
{
	this.show(this.offset-1);
};

TTGallery.prototype.next = function()
{
	this.show(this.offset+1);
};

TTGallery.prototype.showImagePopup1 = function()
{
	this.showImagePopup();
};

TTGallery.prototype.showImagePopup2 = function()
{
	this.instance.showImagePopup();
};

TTGallery.prototype.showImagePopup = function(offset)
{
	try {
		open_img(this.src[this.offset]);
	} catch(e) {
		window.open(this.src[this.offset]);
	}	
};&lt;/script&gt;&lt;div id=&quot;Gallery491&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery491 = new TTGallery(&quot;Gallery491&quot;);Gallery491.appendImage(&quot;http://www.ifublog.com/attach/35/1316056499.jpg&quot;, &quot;&quot;, 400, 300);Gallery491.appendImage(&quot;http://www.ifublog.com/attach/35/1049099449.jpg&quot;, &quot;&quot;, 400, 300);Gallery491.appendImage(&quot;http://www.ifublog.com/attach/35/1238091661.jpg&quot;, &quot;&quot;, 400, 300);Gallery491.appendImage(&quot;http://www.ifublog.com/attach/35/1255746748.jpg&quot;, &quot;&quot;, 400, 300);Gallery491.appendImage(&quot;http://www.ifublog.com/attach/35/1130710985.jpg&quot;, &quot;&quot;, 225, 300);Gallery491.appendImage(&quot;http://www.ifublog.com/attach/35/1377470075.jpg&quot;, &quot;&quot;, 226, 300);Gallery491.show();&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
最后的主角终于登场咯~~潘帅来了~~&lt;br /&gt;
想起来我高中时还挺喜欢他的~虽然后来又移情别恋~~不过他还是很不错啦！&lt;br /&gt;
当初在中国有几次都错过了见他真人的机会呐~这次终于看到了~~激动下！~&lt;br /&gt;
&lt;br /&gt;
许慧欣感觉确实没有电视上那么高，而且腿有点粗粗的……但是她的脸蛋真的好美哟~！很小的脸~而且看着白白嫩嫩的！~喜欢~~&lt;br /&gt;
&lt;br /&gt;
前面很多人一起的照片是在倒数国庆的时候~~歌手还有主持人领导的大集合~~&lt;br /&gt;
潘潘和许慧欣独唱的时候照得很不清楚……汗~~&lt;br /&gt;
&lt;br /&gt;
&lt;div id=&quot;Gallery492&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery492 = new TTGallery(&quot;Gallery492&quot;);Gallery492.appendImage(&quot;http://www.ifublog.com/attach/35/1199270914.jpg&quot;, &quot;&quot;, 400, 299);Gallery492.appendImage(&quot;http://www.ifublog.com/attach/35/1166395201.jpg&quot;, &quot;&quot;, 400, 300);Gallery492.appendImage(&quot;http://www.ifublog.com/attach/35/1012739829.jpg&quot;, &quot;&quot;, 400, 299);Gallery492.appendImage(&quot;http://www.ifublog.com/attach/35/1085281474.jpg&quot;, &quot;&quot;, 400, 299);Gallery492.appendImage(&quot;http://www.ifublog.com/attach/35/1104155128.jpg&quot;, &quot;&quot;, 400, 299);Gallery492.appendImage(&quot;http://www.ifublog.com/attach/35/1028103358.jpg&quot;, &quot;&quot;, 224, 300);Gallery492.appendImage(&quot;http://www.ifublog.com/attach/35/1077304067.jpg&quot;, &quot;&quot;, 400, 300);Gallery492.appendImage(&quot;http://www.ifublog.com/attach/35/1103158619.jpg&quot;, &quot;&quot;, 400, 300);Gallery492.show();&lt;/script&gt;&lt;br /&gt;
过零点的时候放了很久的烟花~！好漂亮哦~~上面的轻轨在经过的时候都鸣喇叭表示庆贺~很可爱~&lt;br /&gt;
&lt;br /&gt;
&lt;div id=&quot;Gallery493&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery493 = new TTGallery(&quot;Gallery493&quot;);Gallery493.appendImage(&quot;http://www.ifublog.com/attach/35/1248269339.jpg&quot;, &quot;&quot;, 400, 300);Gallery493.appendImage(&quot;http://www.ifublog.com/attach/35/1218568897.jpg&quot;, &quot;&quot;, 400, 300);Gallery493.appendImage(&quot;http://www.ifublog.com/attach/35/1249560672.jpg&quot;, &quot;&quot;, 400, 300);Gallery493.appendImage(&quot;http://www.ifublog.com/attach/35/1259780886.jpg&quot;, &quot;&quot;, 225, 300);Gallery493.appendImage(&quot;http://www.ifublog.com/attach/35/1293603520.jpg&quot;, &quot;&quot;, 224, 300);Gallery493.show();&lt;/script&gt;&lt;br /&gt;
其实我还录了很多视频~等有空传到YouTube再放上来看吧~&lt;br /&gt;
&lt;br /&gt;
昨天还真是有点high呢~~因为算起来是我第一次在马来西亚看到明星~~虽然站了很久很久腿已经酸到动一下都疼，但也算是美好的经历吧~不过回家以后我是一直睡到了今天中午~~&lt;br /&gt;
&lt;br /&gt;
最后再贴一张昨晚出门前的照片~&lt;br /&gt;
&lt;br /&gt;
&lt;div id=&quot;more49_0&quot; style=&quot;display:block&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;hideLayer(&#039;more49_0&#039;);showLayer(&#039;less49_0&#039;);return false&quot;&gt;[ 點此觀看喲！ ]&lt;/a&gt;&lt;/div&gt;&lt;div id=&quot;less49_0&quot; style=&quot;display:none&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;showLayer(&#039;more49_0&#039;);hideLayer(&#039;less49_0&#039;);return false&quot;&gt;[ 點此縮回嚕！ ]&lt;/a&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/35/1294491224.jpg&quot; width=&quot;350&quot; height=&quot;467&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;</description>
			<category>潘玮柏</category>
			<category>照片</category>
			<category>许慧欣</category>
			<category>金河</category>
			<category>马来西亚国庆</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/49</guid>
			<comments>http://www.ifublog.com/risaki/49#entry49comment</comments>
			<pubDate>Sun, 31 Aug 2008 19:48:17 +0800</pubDate>
		</item>
		<item>
			<title>国外如何看奥运直播</title>
			<link>http://www.ifublog.com/risaki/48</link>
			<description>话说刚刚看完了奥运的开幕式~哈哈~~还不错！~而且烟花好漂亮啊！！~~&lt;br /&gt;
本来之前是已经放弃要看奥运了，因为CCTV封锁了国外IP~~在海外所有的网络电视都看不了转播！！我家又没有电视，看不了astro的转播~大晚上又不想去别人家看~~还想着以后下载看算了……&lt;br /&gt;
&lt;br /&gt;
不过突然发现了个好软件~~&lt;br /&gt;
应该是&lt;font color=&quot;#ff3399&quot;&gt;目前唯一&lt;/font&gt;（至少我所知道的~~）海外可以看央视奥运直播的~速度挺快的！基本上没有卡过~~清晰度也算不错~&lt;br /&gt;
&lt;br /&gt;
和我一样的留学生或者海外同胞们下载来看吧~&lt;br /&gt;
不知道现在发会不会晚~呵呵~&lt;br /&gt;
&lt;br /&gt;
软件名称叫 :&lt;font face=&quot;times new roman,times,serif&quot; color=&quot;#ff0000&quot; size=&quot;5&quot;&gt; &lt;del&gt;Sopcast&lt;/del&gt;&amp;nbsp; &lt;font color=&quot;#9b18c1&quot; size=&quot;2&quot;&gt;这个好像又被屏蔽不能看啦~~~&lt;/font&gt;&lt;/font&gt;&lt;br /&gt;
大家可以上网搜索下载&lt;br /&gt;
&lt;br /&gt;
另外也提供下我刚才下载的地址：（是PChome的~~）&lt;br /&gt;
&lt;br /&gt;
&lt;div id=&quot;more48_0&quot; style=&quot;display:block&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;hideLayer(&#039;more48_0&#039;);showLayer(&#039;less48_0&#039;);return false&quot;&gt; [ 點此觀看全文喲！ ] &lt;/a&gt;&lt;/div&gt;&lt;div id=&quot;less48_0&quot; style=&quot;display:none&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;showLayer(&#039;more48_0&#039;);hideLayer(&#039;less48_0&#039;);return false&quot;&gt; [ 點此縮回本文嚕！ ] &lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://dl-sh-ocn-1.pchome.net/0f/vk/SopCast303.zip&quot;&gt;http://dl-sh-ocn-1.pchome.net/0f/vk/SopCast303.zip&lt;/a&gt;&lt;a href=&quot;http://dl-sh-ocn-1.pchome.net/0f/vk/SopCast303.zip&quot; onclick=&quot;window.open(&#039;http://dl-sh-ocn-1.pchome.net/0f/vk/SopCast303.zip&#039;);return false;&quot; style=&quot;border:none; text-decoration:none; padding-left:15px; margin-right: -0.5em; background: transparent url(http://somnia.ws/php/ttblog/plugins/NewWindowLink/newwindow.gif) no-repeat 2px 50%;&quot; title=&quot;在新的視窗中打開此超連結&quot;&gt;&amp;nbsp;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
原始下载页面是：&lt;br /&gt;
&lt;a href=&quot;http://download.pchome.net/multimedia/onlineplayer/download-20576.html&quot;&gt;http://download.pchome.net/multimedia/onlineplayer/download-20576.html&lt;/a&gt;&lt;a href=&quot;http://download.pchome.net/multimedia/onlineplayer/download-20576.html&quot; onclick=&quot;window.open(&#039;http://download.pchome.net/multimedia/onlineplayer/download-20576.html&#039;);return false;&quot; style=&quot;border:none; text-decoration:none; padding-left:15px; margin-right: -0.5em; background: transparent url(http://somnia.ws/php/ttblog/plugins/NewWindowLink/newwindow.gif) no-repeat 2px 50%;&quot; title=&quot;在新的視窗中打開此超連結&quot;&gt;&amp;nbsp;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;font color=&quot;#ff7635&quot;&gt;我今天发现sopcast的央视频道好像也被关了……晕死~~只有中央一台可以看？~~&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#ff3399&quot;&gt;&lt;font color=&quot;#ff3399&quot;&gt;10/8 ~谢谢网友&lt;/font&gt;&lt;span class=&quot;name&quot;&gt;&lt;font color=&quot;#ff3399&quot;&gt;&lt;strong&gt;Cesc&lt;/strong&gt;提供的频道哦~~~我测试可以看！~还是用sopcast来收看的！&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;font size=&quot;3&quot;&gt;&lt;font color=&quot;#ff0000&quot; size=&quot;2&quot;&gt;以下5个台，都会转播奥运会的赛事！&lt;br /&gt;
CCTV1： sop://broker1.sopcast.com:3912/15102&lt;br /&gt;
CCTV2： sop://broker1.sopcast.com:3912/15103&lt;br /&gt;
CCTV3： sop://broker1.sopcast.com:3912/8888&lt;br /&gt;
广东体育： sop://sop.rojadirecta.com:3912/6543&lt;br /&gt;
上海体育： sop://broker6.sopcast.com:3912/6001&lt;/font&gt;&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;br /&gt;
大家试试另外这个： &lt;font color=&quot;#ff0000&quot; size=&quot;4&quot;&gt;TVANT &lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;这个还可以看~~&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#000000&quot; size=&quot;2&quot;&gt;我之前从这里下载的：&lt;/font&gt;&lt;a href=&quot;http://download.tvants.com/pub/tvants/tvants1/win32/bin/TvantsSetup.EXE&quot;&gt;&lt;font size=&quot;2&quot;&gt;http://download.tvants.com/pub/tvants/tvants1/win32/bin/TvantsSetup.EXE&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font size=&quot;2&quot;&gt;&lt;font color=&quot;#177fcd&quot;&gt;下载安装以后在文件里找到播放软件打开就可以看了~~但是我看起很卡~不知道是因为网速的原因吗？&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#000000&quot;&gt;大家试试看吧~&lt;br /&gt;
&lt;/font&gt;&lt;/font&gt;&lt;br /&gt;
&lt;strong&gt;另外再添加两个~~~&lt;br /&gt;
&lt;/strong&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.qqqtv.com/&quot;&gt;http://www.qqqtv.com/&lt;/a&gt;&lt;a href=&quot;http://www.qqqtv.com/&quot; onclick=&quot;window.open(&#039;http://www.qqqtv.com/&#039;);return false;&quot; style=&quot;border:none; text-decoration:none; padding-left:15px; margin-right: -0.5em; background: transparent url(http://somnia.ws/php/ttblog/plugins/NewWindowLink/newwindow.gif) no-repeat 2px 50%;&quot; title=&quot;在新的視窗中打開此超連結&quot;&gt;&amp;nbsp;&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.51live.com/&quot;&gt;http://www.51live.com/&lt;/a&gt;&lt;a href=&quot;http://www.51live.com/&quot; onclick=&quot;window.open(&#039;http://www.51live.com/&#039;);return false;&quot; style=&quot;border:none; text-decoration:none; padding-left:15px; margin-right: -0.5em; background: transparent url(http://somnia.ws/php/ttblog/plugins/NewWindowLink/newwindow.gif) no-repeat 2px 50%;&quot; title=&quot;在新的視窗中打開此超連結&quot;&gt;&amp;nbsp;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#008000&quot; size=&quot;2&quot;&gt;都要下载对应的插件才可以看~~不过我还没有试过~&lt;br /&gt;
&lt;/font&gt;&lt;/font&gt;</description>
			<category>北京奥运</category>
			<category>奥运直播</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/48</guid>
			<comments>http://www.ifublog.com/risaki/48#entry48comment</comments>
			<pubDate>Sat, 09 Aug 2008 00:30:40 +0800</pubDate>
		</item>
		<item>
			<title>悲しみと笑顔の中で</title>
			<link>http://www.ifublog.com/risaki/47</link>
			<description>悲伤的时候总会有，我们要微笑着穿过去。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
不想去回忆不快乐的事情，也不想回到伤感的情绪中去。&lt;br /&gt;
&lt;br /&gt;
那些日子渐行渐远，不需要再回来。&lt;br /&gt;
&lt;br /&gt;
可是未来的路，也总有伤痛。&lt;br /&gt;
&lt;br /&gt;
避不开，躲不掉。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
可我还是想，有人陪我，没有伤心遗憾的，走完剩下的路。&lt;br /&gt;
</description>
			<category>小情绪</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/47</guid>
			<comments>http://www.ifublog.com/risaki/47#entry47comment</comments>
			<pubDate>Thu, 24 Jul 2008 01:22:56 +0800</pubDate>
		</item>
		<item>
			<title>乌龟也不及我慢~</title>
			<link>http://www.ifublog.com/risaki/46</link>
			<description>今天才发现，我是以一个月一篇的速度来更新我的blog……&lt;br /&gt;
&lt;br /&gt;
宅女当久了，就越来越懒了。于是就宅到了不想动弹的境界~~~&lt;br /&gt;
连打字就觉得累~~&lt;br /&gt;
&lt;br /&gt;
每次不知道写什么好的时候，就会想到贴照片~哈哈！也总算是更新了嘛~&lt;br /&gt;
&lt;br /&gt;
虽然我最近连照相都觉得懒得 …&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/risaki/&quot;;function TTGallery(containerId)
{
	this.containerId = containerId;
	this.container = document.getElementById(this.containerId);
	this.container.style.filter = &quot;progid:DXImageTransform.Microsoft.Fade(duration=0.3, overlap=1.0)&quot;;
	this.container.style.textAlign = &quot;center&quot;;
	this.container.style.width = &quot;100%&quot;;
	this.container.instance = this;

	this.numImages = 0;
	this.imageLoaded = 0;
	this.offset = 0;

	this.src = new Array();
	this.caption = new Array();
	this.width = new Array();
	this.height = new Array();
	this.imageCache = new Array();
};

TTGallery.prototype.appendImage = function(src, caption, width, height)
{
	this.numImages++;

	var imageCache = new Image();
	imageCache.src = src;
	imageCache.onload = function() { var tmp = this.src; };

	this.imageCache[this.imageCache.length] = src;

	this.src[this.src.length] = src;
	this.width[this.width.length] = width;
	this.height[this.height.length] = height;
	this.caption[this.caption.length] = caption;
};

TTGallery.prototype.getControl = function()
{
	var control = document.createElement(&quot;div&quot;);
	control.style.marginBottom = &quot;10px&quot;;
	control.className = &quot;galleryControl&quot;;
	control.style.color = &quot;#777&quot;;
	control.style.font = &quot;bold 0.9em Verdana, Sans-serif&quot;;
	control.innerHTML = &#039;(&#039; + (this.offset + 1) + &#039;/&#039; + this.numImages + &#039;) &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_prev.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;PREVIOUS&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_enlarge.gif&quot; width=&quot;70&quot; height=&quot;19&quot; alt=&quot;ZOOM&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_next.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;NEXT&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt;&#039;;

	return control;
};

TTGallery.prototype.getImage = function()
{
	var image = document.createElement(&quot;img&quot;);
	image.instance = this;
	image.src = this.src[this.offset];
	image.width = this.width[this.offset];
	image.height = this.height[this.offset];
	image.onclick = this.showImagePopup2;
	image.style.cursor = &quot;pointer&quot;;

	return image;
};

TTGallery.prototype.getCaption = function()
{
	var captionText = this.caption[this.offset];
	captionText = captionText.replace(new RegExp(&quot;&amp;amp;?&quot;, &quot;gi&quot;), &quot;&amp;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;lt;?&quot;, &quot;gi&quot;), &quot;&lt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;gt;?&quot;, &quot;gi&quot;), &quot;&gt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;quot;?&quot;, &quot;gi&quot;), &quot;\&quot;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;#39;?&quot;, &quot;gi&quot;), &quot;&#039;&quot;);
	
	var caption = document.createElement(&quot;div&quot;);
	caption.style.textAlign = &quot;center&quot;;
	caption.style.marginTop = &quot;8px&quot;;
	caption.style.color = &quot;#627e89&quot;;
	caption.className = &quot;galleryCaption&quot;;
	caption.appendChild(document.createTextNode(captionText));

	return caption;
};

TTGallery.prototype.show = function(offset)
{
	if(this.numImages == 0) {
		var div = document.createElement(&quot;div&quot;);
		div.style.textAlign = &quot;center&quot;;
		div.style.color = &quot;#888&quot;;
		div.style.margin = &quot;10px auto&quot;;
		div.style.font = &quot;bold 2em/1 Verdana, Sans-serif&quot;;
		div.innerHTML = &quot;NO IMAGES&quot;;
		this.container.appendChild(div);	
		return;
	}

	if(typeof offset == &quot;undefined&quot;)
		this.offset = 0;
	else
	{
		if(offset &lt; 0)
			this.offset = this.numImages -1;
		else if(offset &gt;= this.numImages)
			this.offset = 0;
		else
			this.offset = offset;
	}

	if(this.container.filters)
		this.container.filters[0].Apply();

	this.container.innerHTML = &quot;&quot;;
	this.container.appendChild(this.getControl());
	this.container.appendChild(this.getImage());
	this.container.appendChild(this.getCaption());

	if(this.container.filters)
		this.container.filters[0].Play();
};

TTGallery.prototype.prev = function()
{
	this.show(this.offset-1);
};

TTGallery.prototype.next = function()
{
	this.show(this.offset+1);
};

TTGallery.prototype.showImagePopup1 = function()
{
	this.showImagePopup();
};

TTGallery.prototype.showImagePopup2 = function()
{
	this.instance.showImagePopup();
};

TTGallery.prototype.showImagePopup = function(offset)
{
	try {
		open_img(this.src[this.offset]);
	} catch(e) {
		window.open(this.src[this.offset]);
	}	
};&lt;/script&gt;&lt;div id=&quot;Gallery461&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery461 = new TTGallery(&quot;Gallery461&quot;);Gallery461.appendImage(&quot;http://www.ifublog.com/attach/35/1126882902.jpg&quot;, &quot;&quot;, 300, 400);Gallery461.appendImage(&quot;http://www.ifublog.com/attach/35/1399077947.jpg&quot;, &quot;&quot;, 292, 400);Gallery461.appendImage(&quot;http://www.ifublog.com/attach/35/1264205641.jpg&quot;, &quot;&quot;, 285, 400);Gallery461.appendImage(&quot;http://www.ifublog.com/attach/35/1259481137.jpg&quot;, &quot;&quot;, 300, 400);Gallery461.show();&lt;/script&gt;&lt;br /&gt;
究竟我还要等多久才会“洗心革面”~~重新开始呢~&lt;br /&gt;
不知道~~就这样下去吧~&lt;br /&gt;
说不定明天我就刷的又更新呢~~~没个准儿~&lt;br /&gt;
&lt;br /&gt;
谢谢你们的观看~ ^^&lt;br /&gt;
</description>
			<category>照片</category>
			<category>自拍</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/46</guid>
			<comments>http://www.ifublog.com/risaki/46#entry46comment</comments>
			<pubDate>Wed, 16 Jul 2008 18:47:46 +0800</pubDate>
		</item>
		<item>
			<title>小更新~</title>
			<link>http://www.ifublog.com/risaki/45</link>
			<description>&lt;p&gt;很久没有上来看自己的blog&lt;br /&gt;
今天才发现原来距离上一篇居然有一个月了。&lt;br /&gt;
&lt;br /&gt;
其实原因有很多，总之是又忙又懒。&lt;br /&gt;
只是让那些关心挂念我的人每次都失望的离开~~还怪不好意思的！&lt;br /&gt;
哈哈~&lt;br /&gt;
&lt;br /&gt;
衣服之前也差点走不下去了，不过还好有贵人相助，过了这次难关。&lt;br /&gt;
&lt;br /&gt;
最近我家小狗发情了……可真是弄到我头昏脑胀啊~~~&lt;br /&gt;
&lt;br /&gt;
要说的很多，所以就不知道说什么好~&lt;br /&gt;
最后更新下前前段时间的照片吧……&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/risaki/&quot;;function TTGallery(containerId)
{
	this.containerId = containerId;
	this.container = document.getElementById(this.containerId);
	this.container.style.filter = &quot;progid:DXImageTransform.Microsoft.Fade(duration=0.3, overlap=1.0)&quot;;
	this.container.style.textAlign = &quot;center&quot;;
	this.container.style.width = &quot;100%&quot;;
	this.container.instance = this;

	this.numImages = 0;
	this.imageLoaded = 0;
	this.offset = 0;

	this.src = new Array();
	this.caption = new Array();
	this.width = new Array();
	this.height = new Array();
	this.imageCache = new Array();
};

TTGallery.prototype.appendImage = function(src, caption, width, height)
{
	this.numImages++;

	var imageCache = new Image();
	imageCache.src = src;
	imageCache.onload = function() { var tmp = this.src; };

	this.imageCache[this.imageCache.length] = src;

	this.src[this.src.length] = src;
	this.width[this.width.length] = width;
	this.height[this.height.length] = height;
	this.caption[this.caption.length] = caption;
};

TTGallery.prototype.getControl = function()
{
	var control = document.createElement(&quot;div&quot;);
	control.style.marginBottom = &quot;10px&quot;;
	control.className = &quot;galleryControl&quot;;
	control.style.color = &quot;#777&quot;;
	control.style.font = &quot;bold 0.9em Verdana, Sans-serif&quot;;
	control.innerHTML = &#039;(&#039; + (this.offset + 1) + &#039;/&#039; + this.numImages + &#039;) &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_prev.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;PREVIOUS&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_enlarge.gif&quot; width=&quot;70&quot; height=&quot;19&quot; alt=&quot;ZOOM&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_next.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;NEXT&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt;&#039;;

	return control;
};

TTGallery.prototype.getImage = function()
{
	var image = document.createElement(&quot;img&quot;);
	image.instance = this;
	image.src = this.src[this.offset];
	image.width = this.width[this.offset];
	image.height = this.height[this.offset];
	image.onclick = this.showImagePopup2;
	image.style.cursor = &quot;pointer&quot;;

	return image;
};

TTGallery.prototype.getCaption = function()
{
	var captionText = this.caption[this.offset];
	captionText = captionText.replace(new RegExp(&quot;&amp;amp;?&quot;, &quot;gi&quot;), &quot;&amp;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;lt;?&quot;, &quot;gi&quot;), &quot;&lt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;gt;?&quot;, &quot;gi&quot;), &quot;&gt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;quot;?&quot;, &quot;gi&quot;), &quot;\&quot;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;#39;?&quot;, &quot;gi&quot;), &quot;&#039;&quot;);
	
	var caption = document.createElement(&quot;div&quot;);
	caption.style.textAlign = &quot;center&quot;;
	caption.style.marginTop = &quot;8px&quot;;
	caption.style.color = &quot;#627e89&quot;;
	caption.className = &quot;galleryCaption&quot;;
	caption.appendChild(document.createTextNode(captionText));

	return caption;
};

TTGallery.prototype.show = function(offset)
{
	if(this.numImages == 0) {
		var div = document.createElement(&quot;div&quot;);
		div.style.textAlign = &quot;center&quot;;
		div.style.color = &quot;#888&quot;;
		div.style.margin = &quot;10px auto&quot;;
		div.style.font = &quot;bold 2em/1 Verdana, Sans-serif&quot;;
		div.innerHTML = &quot;NO IMAGES&quot;;
		this.container.appendChild(div);	
		return;
	}

	if(typeof offset == &quot;undefined&quot;)
		this.offset = 0;
	else
	{
		if(offset &lt; 0)
			this.offset = this.numImages -1;
		else if(offset &gt;= this.numImages)
			this.offset = 0;
		else
			this.offset = offset;
	}

	if(this.container.filters)
		this.container.filters[0].Apply();

	this.container.innerHTML = &quot;&quot;;
	this.container.appendChild(this.getControl());
	this.container.appendChild(this.getImage());
	this.container.appendChild(this.getCaption());

	if(this.container.filters)
		this.container.filters[0].Play();
};

TTGallery.prototype.prev = function()
{
	this.show(this.offset-1);
};

TTGallery.prototype.next = function()
{
	this.show(this.offset+1);
};

TTGallery.prototype.showImagePopup1 = function()
{
	this.showImagePopup();
};

TTGallery.prototype.showImagePopup2 = function()
{
	this.instance.showImagePopup();
};

TTGallery.prototype.showImagePopup = function(offset)
{
	try {
		open_img(this.src[this.offset]);
	} catch(e) {
		window.open(this.src[this.offset]);
	}	
};&lt;/script&gt;&lt;div id=&quot;Gallery451&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery451 = new TTGallery(&quot;Gallery451&quot;);Gallery451.appendImage(&quot;http://www.ifublog.com/attach/35/1370684332.jpg&quot;, &quot;&quot;, 200, 267);Gallery451.appendImage(&quot;http://www.ifublog.com/attach/35/1242168605.jpg&quot;, &quot;&quot;, 400, 300);Gallery451.appendImage(&quot;http://www.ifublog.com/attach/35/1352522017.jpg&quot;, &quot;&quot;, 216, 300);Gallery451.appendImage(&quot;http://www.ifublog.com/attach/35/1169581145.jpg&quot;, &quot;&quot;, 208, 300);Gallery451.show();&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/p&gt;</description>
			<category>照片</category>
			<category>自拍</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/45</guid>
			<comments>http://www.ifublog.com/risaki/45#entry45comment</comments>
			<pubDate>Mon, 16 Jun 2008 16:43:00 +0800</pubDate>
		</item>
		<item>
			<title>四川地震抗震救灾爱心捐款！</title>
			<link>http://www.ifublog.com/risaki/44</link>
			<description>&lt;p&gt;截止目前 &lt;a href=&quot;http://news.sina.com.cn/c/2008-05-13/182515531040.shtml&quot; target=&quot;_blank&quot;&gt;&lt;strong&gt;&lt;font color=&quot;#ff0000&quot;&gt;汶川地震死亡人数已超过1.2万人&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
这是我看到的最新各地伤亡汇总，全部是触目惊心的数字！&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/35/4535777379.jpg&quot; width=&quot;550&quot; height=&quot;413&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;br /&gt;
目前的灾区救援工作还在紧急展开中，最令人痛心的是震中地区，救援的军用飞机甚至因为灾情严重无法进入，但是中央已经下达命令不惜代价要在今晚进入这些灾区抢救遇难的同胞们。&lt;br /&gt;
&lt;br /&gt;
现在在这里呼吁大家，多多加入到这次抗震救灾的活动中来，献出自己的爱心，出一份力量，帮助灾区人民早日度过难关！&lt;br /&gt;
&lt;br /&gt;
鉴于网络有些不法分子利用这次抗震救灾来假冒捐款活动骗取好心人们的钱财，所以请大家多加小心！刚才在网络上收集了两个值得放心的捐款活动，大家可以通过自己所在的地区等进行选择。&lt;/p&gt;&lt;div style=&quot;border-right: medium none; padding-right: 0cm; border-top: medium none; padding-left: 0cm; background: #f5fafe; padding-bottom: 0cm; border-left: medium none; line-height: 16pt; padding-top: 0cm; border-bottom: medium none&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;color: #03005c&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;&lt;strong&gt;&lt;font size=&quot;3&quot;&gt;中国扶贫基金会联合新浪紧急募捐倡议&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;/strong&gt;&lt;font color=&quot;#000000&quot;&gt;2008&lt;span style=&quot;color: black&quot;&gt;年5月12日，汶川地震震惊全国，这场7.8级的地震给灾区的同胞造成了巨大的创伤和痛苦。灾害突如其来，震撼着每个人的心灵，中国人民在经历了今年初冰雪灾害之后，面临又一场严峻的考验！&lt;/span&gt;&lt;/font&gt; &lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;为帮助我们的同胞战胜灾害，中国扶贫基金会携手新浪网紧急启动——“我们心在一起——汶川地震紧急救援行动”，向地震灾区紧急捐赠价值100万元的食品。&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;同时，新浪网也呼吁所有爱心企业、热心公众，积极关心地震灾情，向灾民伸出热情援手，及时捐赠，帮助灾区人民渡过生活难关。自然灾害突如其来，无法阻挡，但社会各界在突发灾害面前的强大信心、勇气和团结，是我们战胜一切困难的保障。我们希望有更多的爱心企业伸出援助之手，我们希望有更多的爱心人士贡献绵薄之力！让我们携手同心、众志成城，与灾区的同胞同渡难关，早日赢得抗震救灾的胜利！ &lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;面对灾害，我们心在一起！。&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 12pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span&gt;&lt;strong&gt;♥我们心在一起——汶川地震紧急救援行动捐赠标准&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;类别&lt;span&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;价值&lt;span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/span&gt;备注&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;棉被&lt;span&gt; &amp;nbsp; &amp;nbsp;100&lt;/span&gt;元&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;粮食&lt;span&gt; &amp;nbsp;&amp;nbsp; 300&lt;/span&gt;元&lt;span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;大米、方便面、水等&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;食用油 50元&lt;span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 5&lt;/span&gt;升&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;执行费用 &amp;nbsp;50元&lt;span&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;用于救灾物资仓储、运输、发放等&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;总计 &amp;nbsp;500元&lt;span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/span&gt;可以帮助灾民度过灾后一个月的生存危险期&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 12pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span&gt;&lt;strong&gt;♥ 捐赠方式：&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21.1pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span&gt;&lt;strong&gt;1、银行汇款&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;开户单位：中国扶贫基金会&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;开户行：中国银行北京科技会展中心支行&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;账号：8145—11681908091001 (捐款请注明“汶川地震救援”)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 20.65pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span&gt;&lt;strong&gt;2、邮局汇款&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;地址：北京市海淀区双榆树西里36号南楼五层&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;邮编：100086(捐款请注明“汶川地震救援”)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 20.65pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span&gt;&lt;strong&gt;3)现场捐赠&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;办公地址 北京市海淀区双榆树西里36号南楼五层&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;咨询热线：010-62655199(8：30—21：00)&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 21pt; line-height: 16pt&quot; align=&quot;left&quot;&gt;&lt;span style=&quot;color: black&quot;&gt;&lt;strong&gt;中国扶贫基金会网站：&lt;/strong&gt;&lt;a href=&quot;http://www.cfpa.org.cn/&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;text-decoration: none; text-underline: none&quot;&gt;&lt;strong&gt;www.cfpa.org.cn&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; margin: 0cm 21pt 0pt 0cm; text-indent: 12pt; line-height: 16pt&quot; align=&quot;right&quot;&gt;&lt;span style=&quot;color: #03005c&quot;&gt;&lt;strong&gt;中国扶贫基金会&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;background: #f5fafe; text-indent: 12pt; line-height: 150%&quot; align=&quot;right&quot;&gt;&lt;span style=&quot;font-size: 10.5pt; color: #03005c&quot;&gt;&lt;strong&gt;2008&lt;/strong&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 10.5pt; color: #03005c&quot;&gt;&lt;strong&gt;年5月12日&lt;br /&gt;
&lt;/strong&gt;&lt;div align=&quot;left&quot;&gt;&lt;br /&gt;
&lt;font color=&quot;#177fcd&quot; size=&quot;2&quot;&gt;原文地址 &lt;/font&gt;&lt;a href=&quot;http://www.fupin.org.cn/news/zzy.asp?newsid=805132036538742&quot;&gt;&lt;font color=&quot;#177fcd&quot; size=&quot;2&quot;&gt;http://www.fupin.org.cn/news/zzy.asp?newsid=805132036538742&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#000000&quot; size=&quot;2&quot;&gt;这个捐款应该比较适合身在国内的同胞们，截止目前已经接到了来自社会各方面的捐款&lt;font color=&quot;#ff0000&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;5亿4472万&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font size=&quot;2&quot;&gt;活动网站&lt;/font&gt;：&lt;/strong&gt;&lt;/font&gt;&lt;a href=&quot;http://www.fupin.org.cn/index.asp&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;http://www.fupin.org.cn/index.asp&lt;/strong&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;
&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/strong&gt;&lt;/font&gt;&lt;a href=&quot;http://finance.sina.com.cn/blank/zzqyxd.shtml&quot;&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;http://finance.sina.com.cn/blank/zzqyxd.shtml&lt;/strong&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot;&gt;———————————————————————————————————————&lt;/font&gt;—&lt;br /&gt;
&lt;/div&gt;&lt;font size=&quot;3&quot;&gt;&lt;strong&gt;&lt;br /&gt;
另外一则是中国第一大BBS天涯社区发出的头条募捐号召，&lt;/strong&gt;&lt;font size=&quot;2&quot;&gt;截止13日16点左右，天涯社区与壹基金等联合发起的救助四川震灾活动共收到来自社会各界爱心人士和机构捐助的款项小计&lt;/font&gt;&lt;strong&gt;820万人民币。&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#ff3399&quot;&gt;原贴如下：&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#003366&quot; size=&quot;2&quot;&gt;2008年5月12日，从下午到晚上，我们中的很多人都在恐慌、焦虑、紧张中度过，北京、上海、天津、云南、河南、甘肃、贵州、湖北、湖南、广西、江苏、海南乃至西-藏，无数人同时感受到了大地深处传来的颤抖。在无数人为这突如其来的地震惊恐不定的时候，在地震的震源地四川省汶川县以及周边地区，数十万同胞的生活在瞬间发生了改变。到现在为止，汶川县的通讯信号仍然没有恢复，没有人知道，在这天崩地裂的灾难面前，汶川发生了什么。迄今为止，我们已经得知，仅四川已有8533人死亡（据新华社成都5月12日22时50分电）&lt;br /&gt;
&lt;br /&gt;
　　地震发生后几个小时内，温总理已经赶赴灾区第一线指挥抢险救援。解放军及各地政府部门组织的救灾大军也正争分夺秒地与灾难抗争。我们无法前往灾区，在瓦砾和废墟之中抢救我们的同胞，除了在这里默默祈祷，我们还希望能通过互联网，为那些直面灾难的同胞尽一份菲薄之力，为那些在第一线抢险救灾的勇士们提供一点小小的帮助。1976年7月，一场大地震将睡梦中的唐山摧毁。全国人民与唐山人民一起，将无数的生命拯救，将一座城市从废墟之中重建。今天，我们更有能力，与四川灾区的人民一起，共同渡过难关。&lt;br /&gt;
&lt;br /&gt;
　　我们的同胞正经历着悲伤、死亡、丧失亲人、无家可归等等我们无法想象的灾难与痛苦。我们无法为他们分担着一切，但却有能力给他们一些帮助。在五月的川西，阴雨伴随地震降临，在震后的汶川，　　大地布满了伤痕。在这个时候，一顶挡风的帐篷，一床御寒的被褥，一碗热乎的面条，一句真诚的问候，对于灾区人民来说也许就是希望，就是明天。我们的祖国，我们的同胞，曾经历无数的苦难。今天，我们再也没有理由漠视这一切，同胞们！网友们！让我们一起伸出双手，与灾区人民共同度过这暗夜吧！血浓于水，今夜，让我们都做四川人！&lt;br /&gt;
&lt;br /&gt;
　　天涯社区联合淘宝网、李连杰壹基金计划、搜狐、网易、雅虎共同发起为四川灾区人民捐款活动，您可以通过以下三种方式向四川灾区人民捐赠您的爱心：&lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;green&quot;&gt;　　第一：使用支付宝在线捐赠，捐赠入口：&lt;a href=&quot;http://auction1.taobao.com/auction/item_detail-0db1-cdf1fe8d749b04ba0ac5ca3cdfe6ba6c.jhtml&quot; target=&quot;_blank&quot;&gt;&lt;strong&gt;&lt;font color=&quot;#0000ff&quot;&gt;支付宝在线捐赠&lt;/font&gt;&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
　　第二：通过邮局汇款至：&lt;br /&gt;
　　地址：中国北京东城区北新桥三条8号中国红十字会总会李连杰壹基金计划&lt;br /&gt;
　　邮编：100007 &lt;br /&gt;
　　备注：请务必在汇款单上注明“壹基金天涯四川地震救助”&lt;br /&gt;
&lt;br /&gt;
　　第三：通过银行转账至：&lt;br /&gt;
　　人民币捐款账户：&lt;br /&gt;
　　开户单位：中国红十字会总会(请务必在附言处注明“壹基金天涯四川地震救助”)&lt;br /&gt;
　　人民币开户行：中国工商银行北京分行东四南支行。&lt;br /&gt;
　　人民币账号：0200001009014413252 &lt;br /&gt;
&lt;br /&gt;
　　外币捐款账户：&lt;br /&gt;
　　外币开户单位(account name)：Red Cross Society of China Jet Li One Foundation Project&lt;br /&gt;
　　外币开户行(bank address)：China CITIC Bank Beijing Jiuxianqiao Sub-branch&lt;br /&gt;
　　外币账号 (account number)：7112111482600000209&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;font size=&quot;2&quot;&gt;　　&lt;/font&gt;&lt;font size=&quot;2&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;strong&gt;特别提醒：为保证您的资金安全，请不要轻信主帖外出现的其他任何账号！以免上当。&lt;br /&gt;
&lt;br /&gt;
&lt;/strong&gt;　　&lt;strong&gt;特别说明：在本次捐助活动中，壹基金和红十字会将定期公布本次捐助活动的所有收支明细。谢谢你的支持！同时，我们也希望所有愿意献出爱心的企业，一起加入我们的行动，共同拯救我们的同胞！&lt;/strong&gt; &lt;br /&gt;
　　&lt;br /&gt;
企业捐助咨询电话：020-84112003-266，梁先生（天涯社区）&lt;/font&gt;&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;/font&gt;（以下部分省略……）&lt;br /&gt;
&lt;strong&gt;&lt;font size=&quot;3&quot;&gt;原帖地址：&lt;/font&gt;&lt;/strong&gt;&lt;a href=&quot;http://cache.tianya.cn/publicforum/content/free/1/1224965.shtml&quot;&gt;&lt;strong&gt;http://cache.tianya.cn/publicforum/content/free/1/1224965.shtml&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/font&gt;&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;———————————————————————————————————————&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#0000ff&quot;&gt;希望更多的人献出自己的爱心，为灾区人民献出自己的一份力量，陪伴他们早日走出阴霾，重获平安！&lt;/font&gt;&lt;/font&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;&lt;/font&gt;&lt;/span&gt;&lt;/div&gt;</description>
			<category>捐款</category>
			<category>新闻</category>
			<category>汶川地震</category>
			<category>爱心活动</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/44</guid>
			<comments>http://www.ifublog.com/risaki/44#entry44comment</comments>
			<pubDate>Tue, 13 May 2008 22:12:23 +0800</pubDate>
		</item>
		<item>
			<title>汶川地震。我想回家。</title>
			<link>http://www.ifublog.com/risaki/43</link>
			<description>&lt;font color=&quot;#ff0000&quot;&gt;2008年5月12日下午14时28分，四川省汶川县发生&lt;ins&gt;&lt;strong&gt;7.8级&lt;/strong&gt;地震&lt;/ins&gt;，&lt;/font&gt;&lt;a href=&quot;http://news.sina.com.cn/c/2008-05-12/150315522584.shtml&quot; target=&quot;_blank&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;北京&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#ff0000&quot;&gt;、&lt;/font&gt;&lt;a href=&quot;http://news.sina.com.cn/c/2008-05-12/150515522551.shtml&quot; target=&quot;_blank&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;上海&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#ff0000&quot;&gt;、&lt;/font&gt;&lt;a href=&quot;http://news.sina.com.cn/c/2008-05-12/175915523377.shtml&quot; target=&quot;_blank&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;天津&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#ff0000&quot;&gt;、&lt;/font&gt;&lt;a href=&quot;http://news.sina.com.cn/c/2008-05-12/181915523482.shtml&quot; target=&quot;_blank&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;山西&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#ff0000&quot;&gt;、&lt;/font&gt;&lt;a href=&quot;http://news.sina.com.cn/c/2008-05-12/152315522618.shtml&quot; target=&quot;_blank&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;陕西&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#ff0000&quot;&gt;等全国多个省市有明显震感。地震发生后，胡锦涛总书记指示快抢救伤员。温家宝总理赶赴灾区指导救灾。截止目前，地震可能已造成四川、甘肃、重庆、云南等地&lt;/font&gt;&lt;a href=&quot;http://news.sina.com.cn/c/2008-05-12/203815523839.shtml&quot; target=&quot;_blank&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;逾&lt;strong&gt;3000人死亡&lt;/strong&gt;&lt;/font&gt;&lt;/a&gt;&lt;font color=&quot;#000000&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;。&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/35/3904621797.jpg&quot; width=&quot;400&quot; height=&quot;279&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/35/9070472205.jpg&quot; width=&quot;400&quot; height=&quot;267&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/35/6780449430.jpg&quot; width=&quot;400&quot; height=&quot;286&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/35/1735410167.jpg&quot; width=&quot;400&quot; height=&quot;278&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.ifublog.com/attach/35/2677963045.jpg&quot; width=&quot;400&quot; height=&quot;266&quot; alt=&quot;&quot;/&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div align=&quot;right&quot;&gt;&lt;em&gt;以上摘自新浪网&lt;/em&gt;&lt;a href=&quot;http://news.sina.com.cn/z/08earthquake/&quot;&gt;&lt;em&gt;http://news.sina.com.cn/z/08earthquake/&lt;/em&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div align=&quot;left&quot;&gt;&lt;font color=&quot;#006699&quot;&gt;下午的时候接到爸爸的短信，说家里那边发生地震了。&lt;br /&gt;
当时整个人魂都被吓掉了！从来没有想过四川会发生地震！&lt;br /&gt;
马上打过去电话，知道爸爸妈妈都平安以后才放下心来。&lt;br /&gt;
&lt;br /&gt;
据说这次的地震震级有7.8，和当年的唐山大地震是同样的震级！！&lt;br /&gt;
因为汶川地处多山的地区，才没有造成当年唐山地震的惨重损失。&lt;br /&gt;
但是这次的地震也已经有很多无辜的人丧生。中国的多个省市地区都有很强烈的震感，据说连香港，台湾，日本等都感受到了这次地震。&lt;br /&gt;
&lt;br /&gt;
即使到现在我都还觉得地震这种事情发生在自己身边人的周围，怎么可能啊？？&lt;br /&gt;
很想赶快回家去，回到爸爸妈妈身边。即使现在地震局并没有任何余震的通知。但心里始终是放不下，放不下的心情。&lt;br /&gt;
晚上和妈妈聊语音，听她说起今天地震的情况，真的太吓人了。整个楼都在震动，那是怎样的感觉啊？？&lt;br /&gt;
&lt;br /&gt;
现在只期望爸爸妈妈平平安安。所有的人都平平安安。早日度过这次可怕的地震！&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;font color=&quot;#ff9900&quot;&gt;更多关于此次汶川地震的新闻，可关注新浪网的专题报道：&lt;/font&gt;&lt;a href=&quot;http://news.sina.com.cn/z/08earthquake/&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;http://news.sina.com.cn/z/08earthquake/&lt;/font&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/font&gt;</description>
			<category>新闻</category>
			<category>汶川地震</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/43</guid>
			<comments>http://www.ifublog.com/risaki/43#entry43comment</comments>
			<pubDate>Mon, 12 May 2008 22:01:11 +0800</pubDate>
		</item>
		<item>
			<title>北京奥运票务官方网站~</title>
			<link>http://www.ifublog.com/risaki/42</link>
			<description>&lt;p&gt;前两天火炬传递在吉隆坡结束了~场面还真的是相当宏伟啊~哈哈~&lt;br /&gt;
漫山遍野的红~&lt;br /&gt;
&lt;br /&gt;
据说还是有两个日本ZD跑来闹，结果刚登场就被police叔叔抓了~~~后来南洋日报上报道说这两个只是持有日本护照的西藏籍贯人士，而且还有一个人没有合法护照~~~&lt;/p&gt;&lt;br /&gt;
&lt;table border=&quot;2&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;img height=&quot;336&quot; alt=&quot;&quot; src=&quot;http://i238.photobucket.com/albums/ff301/alanproduction/KL-beijng/16.jpg&quot; width=&quot;500&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;table border=&quot;2&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;img height=&quot;336&quot; alt=&quot;&quot; src=&quot;http://i238.photobucket.com/albums/ff301/alanproduction/KL-beijng/17.jpg&quot; width=&quot;500&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;table border=&quot;2&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;img height=&quot;371&quot; alt=&quot;&quot; src=&quot;http://i238.photobucket.com/albums/ff301/alanproduction/KL-beijng/21.jpg&quot; width=&quot;500&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;table border=&quot;2&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;img height=&quot;507&quot; alt=&quot;&quot; src=&quot;http://i238.photobucket.com/albums/ff301/alanproduction/KL-beijng/33.jpg&quot; width=&quot;350&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;table border=&quot;2&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;img height=&quot;522&quot; alt=&quot;&quot; src=&quot;http://i238.photobucket.com/albums/ff301/alanproduction/KL-beijng/49.jpg&quot; width=&quot;350&quot;/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;font color=&quot;#8e8e8e&quot;&gt;以上照片转自0060 bbs，作者 alan&lt;br /&gt;
&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#000000&quot;&gt;图片太多了~就只放这些了~~&lt;br /&gt;
&lt;br /&gt;
因为奥运会一天天的临近~~现在应该有很多人想买票去看吧~~&lt;br /&gt;
&lt;font size=&quot;3&quot;&gt;所以公布一下&lt;font color=&quot;#ff0000&quot;&gt;&lt;strong&gt;北京奥运票务官方网站&lt;/strong&gt;&lt;/font&gt;~据说之前网上还有假冒的网站呢~~&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;div id=&quot;more42_0&quot; style=&quot;display:block&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;hideLayer(&#039;more42_0&#039;);showLayer(&#039;less42_0&#039;);return false&quot;&gt;[ 第29届奥林匹克运动会官方票务网站 ]&lt;/a&gt;&lt;/div&gt;&lt;div id=&quot;less42_0&quot; style=&quot;display:none&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;showLayer(&#039;more42_0&#039;);hideLayer(&#039;less42_0&#039;);return false&quot;&gt;[ 缩回~ ]&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.tickets.beijing2008.cn/&quot;&gt;http://www.tickets.beijing2008.cn/&lt;/a&gt;&lt;a href=&quot;http://www.tickets.beijing2008.cn/&quot; onclick=&quot;window.open(&#039;http://www.tickets.beijing2008.cn/&#039;);return false;&quot; style=&quot;border:none; text-decoration:none; padding-left:15px; margin-right: -0.5em; background: transparent url(http://somnia.ws/php/ttblog/plugins/NewWindowLink/newwindow.gif) no-repeat 2px 50%;&quot; title=&quot;在新的視窗中打開此超連結&quot;&gt;&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;
好像不在中国的~~需要向居住地的国家或地区的奥林匹克委员会咨询购票事宜&lt;br /&gt;
&lt;br /&gt;
现在售票日程已经进入到 &lt;span style=&quot;font-weight: bold; padding-bottom: 0px; color: #fa7208&quot;&gt;境内公众售票第三阶段 &lt;/span&gt;&lt;span style=&quot;color: #fa7208; padding-top: 0px&quot;&gt;2008年4月 -- 2008年9月 &lt;br /&gt;
&lt;font color=&quot;#000000&quot;&gt;要买的同学请快哦~~&lt;br /&gt;
&lt;br /&gt;
想起来当初北京建奥运会馆时，我还没来得及等到建成就离开了~有点小遗憾啊！&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;最后想说~北京奥运~加油！~&lt;/font&gt;&lt;/p&gt;</description>
			<category>北京奥运</category>
			<category>奥运火炬</category>
			<category>照片</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/42</guid>
			<comments>http://www.ifublog.com/risaki/42#entry42comment</comments>
			<pubDate>Thu, 24 Apr 2008 22:14:50 +0800</pubDate>
		</item>
		<item>
			<title>照片大更新~~</title>
			<link>http://www.ifublog.com/risaki/41</link>
			<description>突然发现回来这里以后就一直没有更新过自己的照片呢~&lt;br /&gt;
&lt;br /&gt;
于是今天就把这一段时间的照片都贴贴吧！~&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.ifublog.com&quot;; var blogURL=&quot;http://www.ifublog.com/risaki/&quot;;function TTGallery(containerId)
{
	this.containerId = containerId;
	this.container = document.getElementById(this.containerId);
	this.container.style.filter = &quot;progid:DXImageTransform.Microsoft.Fade(duration=0.3, overlap=1.0)&quot;;
	this.container.style.textAlign = &quot;center&quot;;
	this.container.style.width = &quot;100%&quot;;
	this.container.instance = this;

	this.numImages = 0;
	this.imageLoaded = 0;
	this.offset = 0;

	this.src = new Array();
	this.caption = new Array();
	this.width = new Array();
	this.height = new Array();
	this.imageCache = new Array();
};

TTGallery.prototype.appendImage = function(src, caption, width, height)
{
	this.numImages++;

	var imageCache = new Image();
	imageCache.src = src;
	imageCache.onload = function() { var tmp = this.src; };

	this.imageCache[this.imageCache.length] = src;

	this.src[this.src.length] = src;
	this.width[this.width.length] = width;
	this.height[this.height.length] = height;
	this.caption[this.caption.length] = caption;
};

TTGallery.prototype.getControl = function()
{
	var control = document.createElement(&quot;div&quot;);
	control.style.marginBottom = &quot;10px&quot;;
	control.className = &quot;galleryControl&quot;;
	control.style.color = &quot;#777&quot;;
	control.style.font = &quot;bold 0.9em Verdana, Sans-serif&quot;;
	control.innerHTML = &#039;(&#039; + (this.offset + 1) + &#039;/&#039; + this.numImages + &#039;) &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_prev.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;PREVIOUS&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_enlarge.gif&quot; width=&quot;70&quot; height=&quot;19&quot; alt=&quot;ZOOM&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt; &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\&#039;&#039; + this.containerId + &#039;\&#039;).instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;&#039; + servicePath + &#039;/image/gallery_next.gif&quot; width=&quot;20&quot; height=&quot;16&quot; alt=&quot;NEXT&quot; style=&quot;vertical-align: middle&quot;/&gt;&lt;/a&gt;&#039;;

	return control;
};

TTGallery.prototype.getImage = function()
{
	var image = document.createElement(&quot;img&quot;);
	image.instance = this;
	image.src = this.src[this.offset];
	image.width = this.width[this.offset];
	image.height = this.height[this.offset];
	image.onclick = this.showImagePopup2;
	image.style.cursor = &quot;pointer&quot;;

	return image;
};

TTGallery.prototype.getCaption = function()
{
	var captionText = this.caption[this.offset];
	captionText = captionText.replace(new RegExp(&quot;&amp;amp;?&quot;, &quot;gi&quot;), &quot;&amp;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;lt;?&quot;, &quot;gi&quot;), &quot;&lt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;gt;?&quot;, &quot;gi&quot;), &quot;&gt;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;quot;?&quot;, &quot;gi&quot;), &quot;\&quot;&quot;);
	captionText = captionText.replace(new RegExp(&quot;&amp;#39;?&quot;, &quot;gi&quot;), &quot;&#039;&quot;);
	
	var caption = document.createElement(&quot;div&quot;);
	caption.style.textAlign = &quot;center&quot;;
	caption.style.marginTop = &quot;8px&quot;;
	caption.style.color = &quot;#627e89&quot;;
	caption.className = &quot;galleryCaption&quot;;
	caption.appendChild(document.createTextNode(captionText));

	return caption;
};

TTGallery.prototype.show = function(offset)
{
	if(this.numImages == 0) {
		var div = document.createElement(&quot;div&quot;);
		div.style.textAlign = &quot;center&quot;;
		div.style.color = &quot;#888&quot;;
		div.style.margin = &quot;10px auto&quot;;
		div.style.font = &quot;bold 2em/1 Verdana, Sans-serif&quot;;
		div.innerHTML = &quot;NO IMAGES&quot;;
		this.container.appendChild(div);	
		return;
	}

	if(typeof offset == &quot;undefined&quot;)
		this.offset = 0;
	else
	{
		if(offset &lt; 0)
			this.offset = this.numImages -1;
		else if(offset &gt;= this.numImages)
			this.offset = 0;
		else
			this.offset = offset;
	}

	if(this.container.filters)
		this.container.filters[0].Apply();

	this.container.innerHTML = &quot;&quot;;
	this.container.appendChild(this.getControl());
	this.container.appendChild(this.getImage());
	this.container.appendChild(this.getCaption());

	if(this.container.filters)
		this.container.filters[0].Play();
};

TTGallery.prototype.prev = function()
{
	this.show(this.offset-1);
};

TTGallery.prototype.next = function()
{
	this.show(this.offset+1);
};

TTGallery.prototype.showImagePopup1 = function()
{
	this.showImagePopup();
};

TTGallery.prototype.showImagePopup2 = function()
{
	this.instance.showImagePopup();
};

TTGallery.prototype.showImagePopup = function(offset)
{
	try {
		open_img(this.src[this.offset]);
	} catch(e) {
		window.open(this.src[this.offset]);
	}	
};&lt;/script&gt;&lt;div id=&quot;Gallery411&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery411 = new TTGallery(&quot;Gallery411&quot;);Gallery411.appendImage(&quot;http://www.ifublog.com/attach/35/6511850400.jpg&quot;, &quot;&quot;, 300, 400);Gallery411.appendImage(&quot;http://www.ifublog.com/attach/35/9506253424.jpg&quot;, &quot;&quot;, 300, 400);Gallery411.appendImage(&quot;http://www.ifublog.com/attach/35/3399114782.jpg&quot;, &quot;&quot;, 300, 400);Gallery411.appendImage(&quot;http://www.ifublog.com/attach/35/8819210819.jpg&quot;, &quot;&quot;, 300, 400);Gallery411.appendImage(&quot;http://www.ifublog.com/attach/35/3876153723.jpg&quot;, &quot;&quot;, 300, 400);Gallery411.appendImage(&quot;http://www.ifublog.com/attach/35/2774198399.jpg&quot;, &quot;&quot;, 300, 400);Gallery411.appendImage(&quot;http://www.ifublog.com/attach/35/6991047706.jpg&quot;, &quot;&quot;, 300, 400);Gallery411.show();&lt;/script&gt;&lt;br /&gt;
究竟是短头发好还是长头发呢~&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div id=&quot;Gallery412&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery412 = new TTGallery(&quot;Gallery412&quot;);Gallery412.appendImage(&quot;http://www.ifublog.com/attach/35/2325083082.jpg&quot;, &quot;&quot;, 300, 400);Gallery412.appendImage(&quot;http://www.ifublog.com/attach/35/5655223132.jpg&quot;, &quot;&quot;, 300, 400);Gallery412.appendImage(&quot;http://www.ifublog.com/attach/35/2641502315.jpg&quot;, &quot;&quot;, 200, 267);Gallery412.appendImage(&quot;http://www.ifublog.com/attach/35/5395416886.jpg&quot;, &quot;&quot;, 200, 267);Gallery412.appendImage(&quot;http://www.ifublog.com/attach/35/2379089708.jpg&quot;, &quot;&quot;, 300, 400);Gallery412.show();&lt;/script&gt;&lt;br /&gt;
最后是久未谋面的nono哟~~还有素颜照……哈哈！&lt;br /&gt;
&lt;br /&gt;
&lt;div id=&quot;more41_0&quot; style=&quot;display:block&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;hideLayer(&#039;more41_0&#039;);showLayer(&#039;less41_0&#039;);return false&quot;&gt;[快点开看看~ ]&lt;/a&gt;&lt;/div&gt;&lt;div id=&quot;less41_0&quot; style=&quot;display:none&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;showLayer(&#039;more41_0&#039;);hideLayer(&#039;less41_0&#039;);return false&quot;&gt;[ 要缩回吗？ ]&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
 &lt;img src=&quot;http://www.ifublog.com/attach/35/4839503687.jpg&quot; width=&quot;250&quot; height=&quot;333&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;&lt;br /&gt;
</description>
			<category>NONO</category>
			<category>照片</category>
			<category>自拍</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/41</guid>
			<comments>http://www.ifublog.com/risaki/41#entry41comment</comments>
			<pubDate>Thu, 17 Apr 2008 15:20:00 +0800</pubDate>
		</item>
		<item>
			<title>奥运圣火将点燃吉隆坡上空！</title>
			<link>http://www.ifublog.com/risaki/40</link>
			<description>&lt;p&gt;&lt;div class=&quot;imageblock left&quot; style=&quot;float: left; margin-right: 10px; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://www.ifublog.com/attach/35/5424296662.jpg&quot; width=&quot;358&quot; height=&quot;480&quot; alt=&quot;&quot;/&gt;&lt;/div&gt; &lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#000000&quot;&gt;2008年4月21日，终于可以迎来历史性的一刻！北京奥运圣火将会传达马来西亚！&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
这几天心里真的有一股很强烈的爱国情绪在暗涌着，终于快要盼来了这一天，掩饰不住的喜悦！&lt;br /&gt;
&lt;br /&gt;
第一次非常强烈的感受到身为中国人的自豪！&lt;br /&gt;
&lt;br /&gt;
虽然之前奥运圣火在传递过程中都受到了阻碍，但是我相信公道自在人心！&lt;br /&gt;
那些盲目的没有看清事实真相的人们是时候擦亮眼睛正视世界了。&lt;br /&gt;
引用今天看到的一句话:&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#ff0000&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;犯天朝神威虽远必诛 &lt;br /&gt;
阻奥运圣火穷寇必败&lt;/font&gt;&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
一个世界，&lt;br /&gt;
一个梦想。&lt;br /&gt;
奥运的精神也是和平与统一的延续。&lt;br /&gt;
&lt;br /&gt;
马来西亚中国留学生论坛组织了一些奥运圣火的活动，有兴趣的朋友可以参加~&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;font color=&quot;#ff0000&quot;&gt;&lt;strong&gt;&lt;font size=&quot;3&quot;&gt;&lt;div align=&quot;center&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;&lt;strong&gt;&lt;font size=&quot;3&quot;&gt;邀您2008年4月21日共赴荣耀之约&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/font&gt;&lt;/strong&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;blue&quot; size=&quot;2&quot;&gt;欢迎在马中国人包括留学生、工作、经商、定居各界人士，欢迎马来西亚支持北京奥运的各界人士积极参与北京奥运圣火火炬传递活动；&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;＝＝＝＝＝＝＝＝＝&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;活动主题：2008北京奥运圣火传递活动沿途观礼助威&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;主办单位：0060 战斗在大马 － 战马论坛&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#ff0000&quot; size=&quot;2&quot;&gt;活动日期：2008年4月21日 下午2点&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#ff0000&quot; size=&quot;2&quot;&gt;活动公益主题：迎奥运 反藏独&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#ff3399&quot; size=&quot;2&quot;&gt;集合地点：时代广场（TIME SQUARE）（暂定），步行至火炬传递路线&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;报名要求：留下您的真实联系姓名及联系电话&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font size=&quot;2&quot;&gt;&lt;font color=&quot;#0000ff&quot;&gt;报名方式：手机：016－2060987 &lt;/font&gt;&lt;font color=&quot;#0000ff&quot;&gt;邮件：&lt;a href=&quot;mailto:bbs.0060.org@msn.com&quot;&gt;bbs.0060.org@msn.com&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;br /&gt;
论坛站内短信接收人：0060 BBS&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;备注：参与本次活动者无需办理任何手续&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;＝＝＝＝＝＝＝＝&lt;/font&gt;&lt;font color=&quot;red&quot;&gt; &lt;table class=&quot;t_table&quot; style=&quot;width: 80%&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#8e8e8e&quot; size=&quot;2&quot;&gt;关于本次活动的其他说明（不断更新中）&lt;/font&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;font color=&quot;#8e8e8e&quot; size=&quot;2&quot;&gt;1.建议大家参与各校学生会组织的观礼活动，便于组织统一运作；&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;font color=&quot;#8e8e8e&quot; size=&quot;2&quot;&gt;2.本活动的活动地点为沿途观礼火炬传递过程，无需办理任何入场手续，入场证为：爱国之心；&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;font color=&quot;#8e8e8e&quot; size=&quot;2&quot;&gt;3.由于0060本身为公益性论坛，故本次活动参与者路费餐费等自理；&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;font color=&quot;#8e8e8e&quot; size=&quot;2&quot;&gt;4.参与本活动者将统一购买大幅国旗，每人一面，赞助联系中，否则大家均摊费用，预计5马币；&lt;font size=&quot;4&quot;&gt;&lt;font color=&quot;blue&quot;&gt;&lt;br /&gt;
&lt;font size=&quot;2&quot;&gt;＝＝＝＝＝＝＝＝＝&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;div align=&quot;left&quot;&gt;&lt;div align=&quot;left&quot;&gt;&lt;div align=&quot;left&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;&lt;strong&gt;&lt;div align=&quot;left&quot;&gt;&lt;font color=&quot;#ff0000&quot;&gt;&lt;strong&gt;五星红旗我为你骄傲 4月21日火炬传递国旗申请&lt;br /&gt;
&lt;/strong&gt;&lt;/font&gt;&lt;/div&gt;&lt;/strong&gt;&lt;br /&gt;
&lt;div class=&quot;t_msgfont&quot; id=&quot;postmessage_1124739&quot;&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;五星红旗我为你骄傲&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;2008年4月21日 马来西亚吉隆坡注定成为红色的海洋&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;0060 战马论坛 已经联系上海国旗厂为本次活动提供国旗&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;0060 战马论坛 也竭力为大家联系本次活动国旗赞助费用&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;所以现在征集数量，&lt;font color=&quot;#ff3399&quot;&gt;截止日期2008年4月16日&lt;/font&gt; &lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;所有国旗将于2008年4月18日空运至吉隆坡&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#ff0000&quot; size=&quot;2&quot;&gt;2008年4月19－20日发放国旗 地点为：时代广场或金河广场&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;如果有赞助商提供赞助，本次国旗免费发放给大家，如果购买预计费用马币4－5之间&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;国旗规格为：长0.9米 宽0.6米&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;&lt;/font&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;联系电话：016－2060987&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;如果有申请巨幅国旗者，请在电话中说明；&lt;br /&gt;
&lt;/font&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;请留下具体的联系方式及需要国旗的数目&lt;/font&gt;&lt;/p&gt;&lt;/div&gt;&lt;/font&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/font&gt;&lt;/p&gt;&lt;/font&gt;&lt;div align=&quot;center&quot;&gt;&lt;font color=&quot;#0000ff&quot; size=&quot;2&quot;&gt;＝＝＝＝＝＝＝＝＝&lt;br /&gt;
&lt;br /&gt;
&lt;div align=&quot;left&quot;&gt;&lt;font color=&quot;#000000&quot;&gt;最后，很想说一句，亲爱的中国，无论我身在哪里，我的心永远支持着你！&lt;br /&gt;
中国！我为你骄傲！&lt;br /&gt;
（我真的很爱国啊~哈哈~）&lt;/font&gt;&lt;/div&gt;&lt;/font&gt;&lt;/div&gt;</description>
			<category>中国</category>
			<category>北京奥运</category>
			<category>圣火</category>
			<category>活动</category>
			<author> (♡小白兔鱼♡)</author>
			<guid>http://www.ifublog.com/risaki/40</guid>
			<comments>http://www.ifublog.com/risaki/40#entry40comment</comments>
			<pubDate>Fri, 11 Apr 2008 20:35:46 +0800</pubDate>
		</item>
	</channel>
</rss>
