<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>阿里山日出民宿</title>
		<link>http://www.seasonstar.com.tw/blog/</link>
		<description>Seasonstar</description>
		<language>zh-CN</language>
		<pubDate>Thu, 04 Mar 2010 23:42:41 +0800</pubDate>
		<item>
			<title>2010阿里山櫻花提前盛開  歡迎上山賞花 !!</title>
			<link>http://www.seasonstar.com.tw/blog/134</link>
			<description>&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.seasonstar.com.tw/blog&quot;; var blogURL=&quot;http://www.seasonstar.com.tw/blog/&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 = '(' + (this.offset + 1) + '/' + this.numImages + ') &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\'' + this.containerId + '\').instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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;';

	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;'&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)
{
	open_img(this.src[this.offset]);
};&lt;/script&gt;&lt;div id=&quot;Gallery1341&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1341 = new TTGallery(&quot;Gallery1341&quot;);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1206957208.jpg&quot;, &quot;&quot;, 400, 287);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1207997046.jpg&quot;, &quot;&quot;, 400, 287);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1327493344.jpg&quot;, &quot;&quot;, 400, 287);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1285424893.jpg&quot;, &quot;&quot;, 400, 287);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1233013584.jpg&quot;, &quot;&quot;, 400, 287);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1389076606.jpg&quot;, &quot;&quot;, 190, 300);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1396173932.jpg&quot;, &quot;&quot;, 400, 272);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1200597219.jpg&quot;, &quot;&quot;, 400, 272);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1189384824.jpg&quot;, &quot;&quot;, 400, 272);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1368839019.jpg&quot;, &quot;&quot;, 205, 300);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1225575209.jpg&quot;, &quot;&quot;, 205, 300);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1295917340.jpg&quot;, &quot;&quot;, 205, 300);Gallery1341.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1217558570.jpg&quot;, &quot;&quot;, 205, 300);Gallery1341.show();&lt;/script&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 園區櫻花資料來源 ...漫步在雲端&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 這幾天氣出奇的好 &amp;nbsp; 不只阿里山櫻花提前盛開 &amp;nbsp; 連門口的紫滕也一起綻放&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 春天真的來到 &amp;nbsp;&amp;nbsp; 趁著天氣路況都不錯 &amp;nbsp;&amp;nbsp; 歡迎上山來春遊賞櫻吧~&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &lt;br /&gt;
</description>
			<category>news</category>
			<author> (四季星空)</author>
			<pubDate>Wed, 03 Mar 2010 17:24:30 +0800</pubDate>
		</item>
		<item>
			<title>美景分享.....漫步在雲端</title>
			<link>http://www.seasonstar.com.tw/blog/133</link>
			<description>&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.seasonstar.com.tw/blog&quot;; var blogURL=&quot;http://www.seasonstar.com.tw/blog/&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 = '(' + (this.offset + 1) + '/' + this.numImages + ') &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\'' + this.containerId + '\').instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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;';

	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;'&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)
{
	open_img(this.src[this.offset]);
};&lt;/script&gt;&lt;div id=&quot;Gallery1331&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1331 = new TTGallery(&quot;Gallery1331&quot;);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1219590920.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1104197101.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1197832838.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1313398411.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1186865312.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1237298318.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1189337736.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1290988904.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1233257594.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1073416062.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1080921487.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1225785275.jpg&quot;, &quot;&quot;, 433, 315);Gallery1331.show();&lt;/script&gt;</description>
			<category>四季好風光</category>
			<author> (四季星空)</author>
			<pubDate>Sun, 07 Feb 2010 17:19:28 +0800</pubDate>
		</item>
		<item>
			<title>玉山雪景</title>
			<link>http://www.seasonstar.com.tw/blog/132</link>
			<description>&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.seasonstar.com.tw/blog&quot;; var blogURL=&quot;http://www.seasonstar.com.tw/blog/&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 = '(' + (this.offset + 1) + '/' + this.numImages + ') &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\'' + this.containerId + '\').instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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;';

	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;'&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)
{
	open_img(this.src[this.offset]);
};&lt;/script&gt;&lt;div id=&quot;Gallery1321&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1321 = new TTGallery(&quot;Gallery1321&quot;);Gallery1321.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1054560848.jpg&quot;, &quot;&quot;, 415, 315);Gallery1321.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1225592599.jpg&quot;, &quot;&quot;, 415, 316);Gallery1321.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1391781446.jpg&quot;, &quot;&quot;, 415, 316);Gallery1321.show();&lt;/script&gt;&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 今早發現窗外的玉山雪景&amp;nbsp; 在朝陽照耀下閃閃動人&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;吸一口 &amp;nbsp; 真是冷到有北國的感覺~&lt;br /&gt;
&lt;br /&gt;
</description>
			<category>四季好風光</category>
			<author> (四季星空)</author>
			<pubDate>Sat, 09 Jan 2010 16:40:12 +0800</pubDate>
		</item>
		<item>
			<title>新年快樂!!</title>
			<link>http://www.seasonstar.com.tw/blog/131</link>
			<description>&lt;p&gt;&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.seasonstar.com.tw/blog&quot;; var blogURL=&quot;http://www.seasonstar.com.tw/blog/&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 = '(' + (this.offset + 1) + '/' + this.numImages + ') &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\'' + this.containerId + '\').instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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;';

	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;'&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)
{
	open_img(this.src[this.offset]);
};&lt;/script&gt;&lt;div id=&quot;Gallery1311&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1311 = new TTGallery(&quot;Gallery1311&quot;);Gallery1311.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1010393475.jpg&quot;, &quot;&quot;, 428, 326);Gallery1311.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1119085850.jpg&quot;, &quot;&quot;, 428, 326);Gallery1311.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1068062645.jpg&quot;, &quot;&quot;, 258, 339);Gallery1311.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1145140807.jpg&quot;, &quot;&quot;, 428, 326);Gallery1311.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1320362338.jpg&quot;, &quot;&quot;, 258, 339);Gallery1311.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1276980310.jpg&quot;, &quot;&quot;, 428, 326);Gallery1311.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1032159552.jpg&quot;, &quot;&quot;, 428, 326);Gallery1311.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1206004032.jpg&quot;, &quot;&quot;, 428, 326);Gallery1311.show();&lt;/script&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;font size=&quot;3&quot;&gt;二延平山步道落成&amp;nbsp; 歡迎大家來挑戰~&lt;/font&gt;&lt;/p&gt;&lt;br /&gt;
</description>
			<category>四季好風光</category>
			<author> (四季星空)</author>
			<pubDate>Tue, 05 Jan 2010 19:45:46 +0800</pubDate>
		</item>
		<item>
			<title>二延平山步道日落雲海</title>
			<link>http://www.seasonstar.com.tw/blog/130</link>
			<description>&lt;embed autostart=&quot;0&quot; src=&quot;http://www.youtube.com/v/8HWb0NVHthA&amp;amp;hl=zh_TW&amp;amp;fs=1&amp;amp;&quot; style=&quot;width: 500px; height: 345px&quot;&gt;&lt;/embed&gt;</description>
			<category>影音</category>
			<author> (四季星空)</author>
			<pubDate>Sun, 27 Dec 2009 13:47:11 +0800</pubDate>
		</item>
		<item>
			<title>90K前後楓紅...詳細資料請移至漫步在雲端</title>
			<link>http://www.seasonstar.com.tw/blog/129</link>
			<description>&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &lt;a href=&quot;http://alishan.cyc.edu.tw/modules/tadnews/index.php?nsn=986&quot;&gt;http://alishan.cyc.edu.tw/modules/tadnews/index.php?nsn=986&lt;/a&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://www.seasonstar.com.tw/blog/attach/1/1346756533.jpg&quot; width=&quot;500&quot; height=&quot;361&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://www.seasonstar.com.tw/blog/attach/1/1173256986.jpg&quot; width=&quot;500&quot; height=&quot;361&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://www.seasonstar.com.tw/blog/attach/1/1070388830.jpg&quot; width=&quot;500&quot; height=&quot;361&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://www.seasonstar.com.tw/blog/attach/1/1131209593.jpg&quot; width=&quot;500&quot; height=&quot;361&quot; alt=&quot;&quot;/&gt;&lt;/div&gt;</description>
			<category>news</category>
			<author> (四季星空)</author>
			<pubDate>Wed, 16 Dec 2009 18:22:59 +0800</pubDate>
		</item>
		<item>
			<title>二延平步道日落雲海 ..... 2009/11/23攝</title>
			<link>http://www.seasonstar.com.tw/blog/128</link>
			<description>&lt;p&gt;&lt;script type=&quot;text/javascript&quot;&gt;var servicePath=&quot;http://www.seasonstar.com.tw/blog&quot;; var blogURL=&quot;http://www.seasonstar.com.tw/blog/&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 = '(' + (this.offset + 1) + '/' + this.numImages + ') &lt;a href=&quot;#&quot; onclick=&quot;document.getElementById(\'' + this.containerId + '\').instance.prev(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.showImagePopup1(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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(\'' + this.containerId + '\').instance.next(); return false&quot; style=&quot;border: 0px&quot;&gt;&lt;img src=&quot;' + servicePath + '/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;';

	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;'&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)
{
	open_img(this.src[this.offset]);
};&lt;/script&gt;&lt;div id=&quot;Gallery1281&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot;&gt;var Gallery1281 = new TTGallery(&quot;Gallery1281&quot;);Gallery1281.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1311007732.jpg&quot;, &quot;&quot;, 365, 300);Gallery1281.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1335174162.jpg&quot;, &quot;&quot;, 365, 300);Gallery1281.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1302651992.jpg&quot;, &quot;&quot;, 365, 300);Gallery1281.appendImage(&quot;http://www.seasonstar.com.tw/blog/attach/1/1366680921.jpg&quot;, &quot;&quot;, 365, 300);Gallery1281.show();&lt;/script&gt; &lt;/p&gt;&lt;br /&gt;
</description>
			<category>四季好風光</category>
			<author> (四季星空)</author>
			<pubDate>Thu, 26 Nov 2009 22:11:00 +0800</pubDate>
		</item>
		<item>
			<title>二延平步道日落雲海...  2009/11/22攝</title>
			<link>http://www.seasonstar.com.tw/blog/127</link>
			<description>&lt;p&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://www.seasonstar.com.tw/blog/attach/1/1172887084.jpg&quot; width=&quot;500&quot; height=&quot;374&quot; alt=&quot;&quot; style=&quot;cursor: pointer&quot; onclick=&quot;open_img('http://www.seasonstar.com.tw/blog/attach/1/1172887084.jpg')&quot;/&gt;&lt;/div&gt; &lt;/p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ***&amp;nbsp; 隙頂二延平雲海步道即將完工&amp;nbsp; 敬請期待***&lt;br /&gt;
</description>
			<category>四季好風光</category>
			<author> (四季星空)</author>
			<pubDate>Mon, 23 Nov 2009 16:45:37 +0800</pubDate>
		</item>
		<item>
			<title>流星雨來囉~</title>
			<link>http://www.seasonstar.com.tw/blog/126</link>
			<description>&lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;articletitle&quot; height=&quot;36&quot; valign=&quot;top&quot;&gt;&lt;strong&gt;獅子座流星雨 明晚燦爛一夜&lt;/strong&gt;&lt;/td&gt;&lt;td class=&quot;articletitle&quot; valign=&quot;top&quot; width=&quot;120&quot; align=&quot;right&quot;&gt;&lt;!---&gt;&lt;a href=&quot;http://www.chinatimes.com/&quot; target=&quot;_blank&quot;&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;articlewriter&quot; height=&quot;34&quot; colspan=&quot;2&quot;&gt;&lt;!---&gt;更新日期:2009/11/16 03:26&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;articlebody1&quot;&gt;&lt;!---&gt;&lt;table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; width=&quot;50&quot; align=&quot;right&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; align=&quot;right&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&quot;right&quot;&gt;&lt;/td&gt;&lt;td width=&quot;1%&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;!---&gt;&lt;!--begin&gt;&lt;DIV id=msncontent&gt;中國時報【李宗祐／台北報導】 &lt;p&gt;曾在一九九八年到二○○一年間連續四年引起全球觀測熱潮的獅子座流星雨，最近又成為各地天文迷追逐焦點！中央氣象局表示，國際流星組織預測，獅子座流星雨將在明晚到周三清晨間再度爆發，每小時至少有上百顆流星畫過天際。 &lt;p&gt;美國航空暨太空總署馬歇爾太空飛行中心科學家比爾．庫奇預測，今年高峰期出現時，每小時可能觀測到五百顆以上流星；甚至有科學家認為，每小時可能看到一千到一千五百顆的「半流星暴雨」。但也有少數科學家認為，極大期時，每小時可能僅能觀測到一、二十顆流星。 &lt;p&gt;氣象局天文站技士鄭振豐說，科學家對流星雨可能出現數量的預測落差相當大，但即使保守估計每小時上百顆，還是相當值得觀測。更特別的是，明晚正好是初一，沒有月光遮蔽，觀測條件很棒。民眾若想看流星許願，明晚到周三清晨五時、天亮前到光害較少處，向東方天空搜尋，就有機會看到獅子座流星雨。 &lt;p&gt;中央氣象局提醒，受鋒面通過影響，北部和東半部明晚到周三降雨機率偏高，中南部觀測到流星雨機會較高。但這段時間也是鋒面通過，天氣最涼，出門觀星最好多件外套保暖。 &lt;p&gt;獅子座流星雨在一九九八年進入三十三年迴歸周期，當時許多學者預測每小時會出現一萬顆以上的流星暴雨，最後事與願違，但二○○一年和二○○二年連著兩年出現大爆發。 &lt;p&gt;此外，國內業餘天文迷每年最大盛事「星空饗宴」（STAR PARTY）最近透過網路發出號召令，預估有上千名天文同好本周六齊聚合歡山翠峰，一起看星星、分享觀星經驗。 &lt;p align=&quot;right&quot;&gt;中時電子報提供 2009/11/16&lt;/p&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description>
			<category>news</category>
			<author> (四季星空)</author>
			<pubDate>Tue, 17 Nov 2009 01:05:31 +0800</pubDate>
		</item>
		<item>
			<title>祝福您  佳節愉快~</title>
			<link>http://www.seasonstar.com.tw/blog/125</link>
			<description>&lt;p&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both; margin-bottom: 10px&quot;&gt;&lt;img src=&quot;http://www.seasonstar.com.tw/blog/attach/1/1001859801.jpg&quot; width=&quot;347&quot; height=&quot;480&quot; alt=&quot;&quot;/&gt;&lt;/div&gt; &amp;nbsp;&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 經過2個月的休息 &amp;nbsp;花園逐漸恢復中&amp;nbsp; &amp;nbsp;秋意漸涼 &amp;nbsp; 玫瑰是最早感受到的&lt;br /&gt;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 今天開始搬花 準備防颱過中秋 &amp;nbsp;非常希望這個芭瑪&amp;nbsp; 下下小雨就好了&lt;br /&gt;
&lt;br /&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 祝福大家&amp;nbsp; 佳節平安 &amp;amp; 愉快 ^^&lt;/p&gt;&lt;br /&gt;
&lt;br /&gt;
</description>
			<category>關於四季星空</category>
			<author> (四季星空)</author>
			<pubDate>Fri, 02 Oct 2009 21:57:06 +0800</pubDate>
		</item>
	</channel>
</rss>
