<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>南海藝廊 Nanhai Gallery-南海推推／Billboard</title>
<link>http://blog.roodo.com/nanhai/archives/cat_266880.html</link>
<description>



var isIE  = (navigator.appVersion.indexOf(&quot;MSIE&quot;) != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf(&quot;win&quot;) != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf(&quot;Opera&quot;) != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn&#039;t in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.7&quot;);
		version = axo.GetVariable(&quot;$version&quot;);
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.6&quot;);
			
			// installed player is some revision of 6.0
			// GetVariable(&quot;$version&quot;) crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = &quot;WIN 6,0,21,0&quot;;

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = &quot;always&quot;;

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable(&quot;$version&quot;);

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.3&quot;);
			version = axo.GetVariable(&quot;$version&quot;);
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.3&quot;);
			version = &quot;WIN 3,0,18,0&quot;;
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash&quot;);
			version = &quot;WIN 2,0,0,11&quot;;
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version &gt;= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null &amp;&amp; navigator.plugins.length &gt; 0) {
		if (navigator.plugins[&quot;Shockwave Flash 2.0&quot;] || navigator.plugins[&quot;Shockwave Flash&quot;]) {
			var swVer2 = navigator.plugins[&quot;Shockwave Flash 2.0&quot;] ? &quot; 2.0&quot; : &quot;&quot;;
			var flashDescription = navigator.plugins[&quot;Shockwave Flash&quot; + swVer2].description;
			var descArray = flashDescription.split(&quot; &quot;);
			var tempArrayMajor = descArray[2].split(&quot;.&quot;);			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == &quot;&quot;) {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == &quot;d&quot;) {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == &quot;r&quot;) {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf(&quot;d&quot;) &gt; 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf(&quot;d&quot;));
				}
			}
			var flashVer = versionMajor + &quot;.&quot; + versionMinor + &quot;.&quot; + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv/2.6&quot;) != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv/2.5&quot;) != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv&quot;) != -1) flashVer = 2;
	else if ( isIE &amp;&amp; isWin &amp;&amp; !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE &amp;&amp; isWin &amp;&amp; !isOpera) {
			// Given &quot;WIN 2,0,0,11&quot;
			tempArray         = versionStr.split(&quot; &quot;); 	// [&quot;WIN&quot;, &quot;2,0,0,11&quot;]
			tempString        = tempArray[1];			// &quot;2,0,0,11&quot;
			versionArray      = tempString.split(&quot;,&quot;);	// [&#039;2&#039;, &#039;0&#039;, &#039;0&#039;, &#039;11&#039;]
		} else {
			versionArray      = versionStr.split(&quot;.&quot;);
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision &gt;= requested major.revision AND the minor version &gt;= requested minor
		if (versionMajor &gt; parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor &gt; parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision &gt;= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  if (src.indexOf(&#039;?&#039;) != -1)
    return src.replace(/\?/, ext+&#039;?&#039;); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = &#039;&#039;;
  if (isIE &amp;&amp; isWin &amp;&amp; !isOpera)
  {
    str += &#039;&#039;;
    for (var i in params)
    {
      str += &#039; &#039;;
    }
    str += &#039;&#039;;
  }
  else
  {
    str += &#039; &#039;;
  }

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, &quot;.swf&quot;, &quot;movie&quot;, &quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot;
     , &quot;application/x-shockwave-flash&quot;
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, &quot;.dcr&quot;, &quot;src&quot;, &quot;clsid:166B1BCA-3F9C-11CF-8075-444553540000&quot;
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i &lt; args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case &quot;classid&quot;:
        break;
      case &quot;pluginspage&quot;:
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case &quot;src&quot;:
      case &quot;movie&quot;:	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs[&quot;src&quot;] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case &quot;onafterupdate&quot;:
      case &quot;onbeforeupdate&quot;:
      case &quot;onblur&quot;:
      case &quot;oncellchange&quot;:
      case &quot;onclick&quot;:
      case &quot;ondblClick&quot;:
      case &quot;ondrag&quot;:
      case &quot;ondragend&quot;:
      case &quot;ondragenter&quot;:
      case &quot;ondragleave&quot;:
      case &quot;ondragover&quot;:
      case &quot;ondrop&quot;:
      case &quot;onfinish&quot;:
      case &quot;onfocus&quot;:
      case &quot;onhelp&quot;:
      case &quot;onmousedown&quot;:
      case &quot;onmouseup&quot;:
      case &quot;onmouseover&quot;:
      case &quot;onmousemove&quot;:
      case &quot;onmouseout&quot;:
      case &quot;onkeypress&quot;:
      case &quot;onkeydown&quot;:
      case &quot;onkeyup&quot;:
      case &quot;onload&quot;:
      case &quot;onlosecapture&quot;:
      case &quot;onpropertychange&quot;:
      case &quot;onreadystatechange&quot;:
      case &quot;onrowsdelete&quot;:
      case &quot;onrowenter&quot;:
      case &quot;onrowexit&quot;:
      case &quot;onrowsinserted&quot;:
      case &quot;onstart&quot;:
      case &quot;onscroll&quot;:
      case &quot;onbeforeeditfocus&quot;:
      case &quot;onactivate&quot;:
      case &quot;onbeforedeactivate&quot;:
      case &quot;ondeactivate&quot;:
      case &quot;type&quot;:
      case &quot;codebase&quot;:
      case &quot;id&quot;:
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case &quot;width&quot;:
      case &quot;height&quot;:
      case &quot;align&quot;:
      case &quot;vspace&quot;: 
      case &quot;hspace&quot;:
      case &quot;class&quot;:
      case &quot;title&quot;:
      case &quot;accesskey&quot;:
      case &quot;name&quot;:
      case &quot;tabindex&quot;:
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs[&quot;classid&quot;] = classid;
  if (mimeType) ret.embedAttrs[&quot;type&quot;] = mimeType;
  return ret;
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&amp;&amp;i0&amp;&amp;parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&amp;&amp;d.all) x=d.all[n]; for (i=0;!x&amp;&amp;i</description>
<language>zh-tw</language>
<generator>Roodo Blog System</generator>
<copyright>All Rights Reserved</copyright>
<atom:link href="http://blog.roodo.com/nanhai/archives/cat_266880.xml" rel="self" type="application/rss+xml" />
<item>
	<title>2007 CC / SC 臺北國際研討會</title>
	<description><![CDATA[
			2007 CC / SC 探討全球cc business model (名額有限，速速報名)研討會網站：http://www.nii.org.tw/2007_CC/index.aspccG blog：http://blog.yam.com/ccgarden/article/10882380&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><strong><font size="2" color="#999999">2007 CC / SC 探討全球cc business model (名額有限，速速報名)</font></strong></p><strong><font color="#999999"><font size="2"><font face="新細明體"><span style="font-weight: bold; font-size: 12pt; font-family: 新細明體">研討會網站：</span></font><span><a href="http://www.nii.org.tw/2007_CC/index.asp"><font color="#999999">http://www.nii.org.tw/2007_CC/index.asp</font></a></span></font></font></strong><font color="#999999"><font size="2"><strong><font face="Times New Roman"><span style="font-weight: bold; font-size: 12pt">ccG blog</span></font></strong><strong><font face="新細明體"><span style="font-weight: bold; font-family: 新細明體">：</span></font><span><a href="http://blog.yam.com/ccgarden/article/10882380"><font color="#999999">http://blog.yam.com/ccgarden/article/10882380</font></a></span></strong></font></font><strong><font face="Times New Roman" size="2"><span style="font-weight: bold; font-size: 12pt">&nbsp;</span></font></strong>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3721103.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3721103.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3721103.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Mon, 02 Jul 2007 16:27:00 +0800</pubDate>
</item>
<item>
	<title>【轉載】草地音樂節</title>
	<description><![CDATA[
			&nbsp;小草地，開學啦!!!
		]]>
	</description>
	<content:encoded><![CDATA[
			<p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><font color="#333333"><span style="font-family: 新細明體">&nbsp;</span></font><font color="#333333"><span style="font-family: 新細明體">小草地，開學啦</span><span><font face="Times New Roman">!!!</font></span></font></p><font color="#333333"><span><font face="Times New Roman"><div style="text-align: center"><img style="width: 200px; height: 154px" src="http://blog.roodo.com/nanhai/fbf62d18.jpg" alt="" width="200" height="154" /></div></font></span></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3438991.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3438991.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3438991.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 02 Jun 2007 17:57:16 +0800</pubDate>
</item>
<item>
	<title>【轉載】豆皮6-7活動節目索引</title>
	<description><![CDATA[
			&nbsp;*以下地點可以取閱到本期&quot;豆皮丸&quot;月報喔!!誠品書店~漢神店.大遠百店.大統和平店.大統新世紀.台南店.台南站前.嘉義衣蝶店.屏東店南.高.屏地區~中正文化中心.高雄市立美術館.高雄電影圖書館.高雄市立圖書館(總館).城市光廊.新濱碼頭.御書房.城邦書局.明儀圖書.金石堂(十全店).敦煌書局(五福四路).ATT.步道咖啡.永漢書局.旗津旅客服務中心.高醫大全家超商.高師大活動中心.中山大藝術大樓小凡於6/14放上
		]]>
	</description>
	<content:encoded><![CDATA[
			<p>&nbsp;</p><p><strong><span style="color: gray; font-family: Verdana">*</span></strong><span style="color: gray"><font face="新細明體">以下地點可以取閱到本期</font></span><span style="color: gray; font-family: Verdana">&quot;</span><span style="color: gray"><font face="新細明體">豆皮丸</font></span><span style="color: gray; font-family: Verdana">&quot;</span><span style="color: gray"><font face="新細明體">月報喔</font></span><span style="color: gray; font-family: Verdana">!!</span><span style="font-size: 10pt; color: gray; font-family: Verdana"><br /></span></p><p><u><span style="font-size: 10pt; color: gray"><font face="新細明體">誠品書店</font></span></u><span style="font-size: 10pt; color: gray; font-family: Verdana">~</span><span style="font-size: 10pt; color: gray"><font face="新細明體">漢神店</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">大遠百店</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">大統和平店</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">大統新世紀</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">台南店</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">台南站前</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">嘉義衣蝶店</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">屏東店</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana"><br /></span><u><span style="font-size: 10pt; color: gray"><font face="新細明體">南</font></span></u><u><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span></u><u><span style="font-size: 10pt; color: gray"><font face="新細明體">高</font></span></u><u><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span></u><u><span style="font-size: 10pt; color: gray"><font face="新細明體">屏地區</font></span></u><span style="font-size: 10pt; color: gray; font-family: Verdana">~</span><span style="font-size: 10pt; color: gray"><font face="新細明體">中正文化中心</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">高雄市立美術館</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">高雄電影圖書館</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">高雄市立圖書館</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">(</span><span style="font-size: 10pt; color: gray"><font face="新細明體">總館</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">).</span><span style="font-size: 10pt; color: gray"><font face="新細明體">城市光廊</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">新濱碼頭</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">御書房</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">城邦書局</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">明儀圖書</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">金石堂</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">(</span><span style="font-size: 10pt; color: gray"><font face="新細明體">十全店</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">).</span><span style="font-size: 10pt; color: gray"><font face="新細明體">敦煌書局</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">(</span><span style="font-size: 10pt; color: gray"><font face="新細明體">五福四路</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">).ATT.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">步道咖啡</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">永漢書局</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">旗津旅客服務中心</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">高醫大全家超商</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">高師大活動中心</font></span><span style="font-size: 10pt; color: gray; font-family: Verdana">.</span><span style="font-size: 10pt; color: gray"><font face="新細明體">中山大藝術大樓</font></span></p><span style="font-size: 10pt; color: gray"><font face="新細明體">小凡於6/14放上</font></span>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3467291.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3467291.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3467291.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Fri, 01 Jun 2007 14:45:15 +0800</pubDate>
</item>
<item>
	<title>【轉載】愛因斯坦搖滾台灣</title>
	<description><![CDATA[
			「愛因斯坦搖滾台灣」預售票仍持續預定中!&nbsp; 時間:5/4(五)晚上七點半5/5~6(六~日)下午兩點半 / 晚上七點半地點:誠品敦南店B2藝文空間本週末上檔的「河床劇團」新戲「愛因斯坦搖滾台灣」引介「河床劇團」的意象美學，走入世界兒童劇場的範疇。在深具國際化視野的思維基礎上，結合創造力、抽象概念、藝術性與魔法，在兒童劇場中建起一方無限奇想的心靈空間，並為台灣年輕世代提供一個新的聲音。在維持既定的高水準舞台視覺, 此次將結合更多影像, 並加入些許喜感，嘗試以成人的角度觀看兒童世界，以大家熟知的人物帶大家一同綺想...&nbsp;河床劇團官方網頁：http://www.riverbedtheatre.com/兩廳院售票系統:http://www.artsticket.com.tw/NewSitePages/ProductsDetailsPage.aspx?ProductId=c4QWP9sLuh9RkA3h%2b6o95 
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font color="#808000"><strong><em>「愛因斯坦搖滾台灣」</em></strong></font><font size="2" color="#000000">預售票仍持續預定中!</font></p><font size="2">&nbsp; <table border="0" cellspacing="5" align="center"><tbody><tr><td><p><font size="2">時間:<br /><font color="#000000"><font size="3">5/4</font>(五)晚上<font size="3"><strong>七點半<br /></strong>5/5~6</font>(六~日)下午<font size="3"><strong>兩點半</strong></font> / 晚上<font size="3"><strong>七點半</strong></font></font></font></p><p><font size="2">地點:<br /><font size="3"><strong>誠品敦南店</strong></font>B2藝文空間</font></p><p><font size="2">本週末上檔的「河床劇團」新戲「愛因斯坦搖滾台灣」引介「河床劇團」的意象美學，走入世界兒童劇場的範疇。在深具國際化視野的思維基礎上，結合創造力、抽象概念、藝術性與魔法，在兒童劇場中建起一方無限奇想的心靈空間，並為台灣年輕世代提供一個新的聲音。在維持既定的高水準舞台視覺, 此次將結合更多影像, 並加入些許喜感，嘗試以成人的角度觀看兒童世界，以大家熟知的人物帶大家一同綺想...</font></p></td><td><img style="width: 150px; height: 207px" src="http://blog.roodo.com/nanhai/46799aff.gif" alt="" width="150" height="207" />&nbsp;</td></tr></tbody></table></font><p><font size="2">河床劇團官方網頁：</font><a href="http://www.riverbedtheatre.com/"><font color="#808000">http://www.riverbedtheatre.com/</font></a><br /><font size="2">兩廳院售票系統:<br /></font><a href="http://www.artsticket.com.tw/NewSitePages/ProductsDetailsPage.aspx?ProductId=c4QWP9sLuh9RkA3h%2b6o95"><font color="#808000">http://www.artsticket.com.tw/NewSitePages/ProductsDetailsPage.aspx?ProductId=c4QWP9sLuh9RkA3h%2b6o95</font></a><font color="#808000"> </font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3117195.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3117195.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3117195.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Tue, 24 Apr 2007 16:18:45 +0800</pubDate>
</item>
<item>
	<title>【轉載】2007年第六屆第六種官能表演藝術祭</title>
	<description><![CDATA[
			2007年第六屆第六種官能表演藝術祭即將登場 !點我看活動詳細內容
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="4" color="#333333"><em><strong>2007年第六屆第六種官能表演藝</strong></em></font><font size="4" color="#333333"><em><strong>術祭即將登場 !</strong></em></font></p><p align="center"><a href="http://blog.roodo.com/nanhai/75f294e4.jpg"><img style="width: 150px; height: 286px" src="http://blog.roodo.com/nanhai/4759b985.jpg" alt="" width="150" height="286" /></a></p><p align="center"><font size="2" color="#999999">點我看活動詳細內容</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3093523.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3093523.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3093523.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Mon, 23 Apr 2007 21:15:48 +0800</pubDate>
</item>
<item>
	<title>【轉載】&lt;打開-當代&gt; 陳小雜-童話與日常即景 個展</title>
	<description><![CDATA[
			&nbsp;童話與日常即景　2007.4.10-2007.5.10 &nbsp;開放時間：3:00pm-9:00pm地址：220板橋市民權路202巷8巷6號電話：2969-2056&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p>&nbsp;</p><p align="center"><font size="4"><em><strong><font color="#333333">童話與日常即景　2007.4.10-2007.5.10</font></strong></em> </font></p><table border="0" cellspacing="5" align="center"><tbody><tr><td><img style="width: 150px; height: 187px" src="http://blog.roodo.com/nanhai/3ce0e804.jpg" alt="" width="150" height="187" />&nbsp;</td><td><p><font size="2" color="#999999">開放時間：3:00pm-9:00pm<br />地址：220板橋市民權路202巷8巷6號<br />電話：2969-2056</font></p>&nbsp;</td></tr></tbody></table>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3092363.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3092363.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3092363.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 22 Apr 2007 18:33:39 +0800</pubDate>
</item>
<item>
	<title>冰櫃”禮”好賣</title>
	<description><![CDATA[
			&nbsp; 冰櫃禮好賣&nbsp;&nbsp;&nbsp;&nbsp;春季限定─蛇吞象口味&nbsp;我們其實沒有賺大錢的企圖沒有華麗繽紛的包裝也沒有長遠的計畫我們有的是對自己作品的熱切有的是簡單隨意的自在風格有&nbsp; 當下青春光彩的散發布娃娃的奇想可愛手繪品的獨一率性陶藝的真切多樣彩色玻璃的晶瑩繽紛手創作品是我們與人互動的&nbsp;&nbsp;&nbsp; 網絡它們有著我們想要說的話想&nbsp;&nbsp;&nbsp; 替你說出你想說的話在長長短短的記憶中若&nbsp; 蛇吞象幼稚園曾給予你哪怕是只有一瞬的&nbsp;&nbsp; 驚喜就已經讓我們的存在&nbsp;&nbsp; 顯得真實&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="left"><span style="font-size: 20pt; font-family: 華康中黑體">&nbsp; <font color="#666666">冰櫃禮好賣</font></span></p><p>&nbsp;</p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="left"><strong><span style="font-size: 11pt; font-family: 華康中黑體"><font color="#666666">&nbsp;&nbsp;&nbsp;春季限定─蛇吞象口味</font></span></strong></p><strong><span style="font-size: 11pt; font-family: 華康中黑體"><table border="0" cellspacing="1" cellpadding="1" style="width: 100%"><tbody><tr><td><p align="center"><img src="http://blog.roodo.com/nanhai/81375550.bmp" border="0" alt="" width="271" height="407" align="baseline" /></p></td><td><p>&nbsp;</p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">我們其實沒有賺大錢的企圖</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">沒有華麗繽紛的包裝</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">也沒有長遠的計畫</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">我們有的是對自己作品的熱切</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">有的是簡單隨意的自在風格</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font color="#999999"><strong><span style="font-size: 10pt; font-family: 新細明體">有</span></strong><strong><span style="font-size: 10pt"><span><font face="Times New Roman">&nbsp; </font></span></span></strong><strong><span style="font-size: 10pt; font-family: 新細明體">當下青春光彩的散發</span></strong></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">布娃娃的奇想可愛</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">手繪品的獨一率性</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">陶藝的真切多樣</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">彩色玻璃的晶瑩繽紛</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font color="#999999"><strong><span style="font-size: 10pt; font-family: 新細明體">手創作品是我們與人互動的</span></strong><strong><span style="font-size: 10pt"><span><font face="Times New Roman">&nbsp;&nbsp;&nbsp; </font></span></span></strong><strong><span style="font-size: 10pt; font-family: 新細明體">網絡</span></strong></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">它們有著我們想要說的話</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font color="#999999"><strong><span style="font-size: 10pt; font-family: 新細明體">想</span></strong><strong><span style="font-size: 10pt"><span><font face="Times New Roman">&nbsp;&nbsp;&nbsp; </font></span></span></strong><strong><span style="font-size: 10pt; font-family: 新細明體">替你說出你想說的話</span></strong></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 10pt; font-family: 新細明體"><font color="#999999">在長長短短的記憶中</font></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font color="#999999"><strong><span style="font-size: 10pt; font-family: 新細明體">若</span></strong><strong><span style="font-size: 10pt"><span><font face="Times New Roman">&nbsp; </font></span></span></strong><strong><span style="font-size: 10pt; font-family: 新細明體">蛇吞象幼稚園曾給予你哪怕是只有一瞬的</span></strong><strong><span style="font-size: 10pt"><span><font face="Times New Roman">&nbsp;&nbsp; </font></span></span></strong><strong><span style="font-size: 10pt; font-family: 新細明體">驚喜</span></strong></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font color="#999999"><strong><span style="font-size: 10pt; font-family: 新細明體">就已經讓我們的存在</span></strong><strong><span style="font-size: 10pt"><span><font face="Times New Roman">&nbsp;&nbsp; </font></span></span></strong><strong><span style="font-size: 10pt; font-family: 新細明體">顯得真實</span></strong></font></p></td></tr><tr><td><p style="margin: 0cm 0cm 0pt" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><font color="#999999"><span style="font-size: 10pt"><a href="http://www.wretch.cc/blog/maydaybear"></a></span></font></p><p>&nbsp;</p></td><td>&nbsp;</td></tr><tr><td><p>&nbsp;</p></td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr></tbody></table></span></strong>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2969267.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2969267.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2969267.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 07 Apr 2007 21:07:42 +0800</pubDate>
</item>
<item>
	<title>【轉載】假動作2</title>
	<description><![CDATA[
			「假動作2」八位年輕的藝術創作者：王仲堃、李玠樺、林冠名、林厚成、姚仲涵、陳萬仁、黃博志、劉瀚之繼去年在南海藝廊「假動作&nbsp;」之後，2007年再以全新力作拔地而起，奮力向前；4月7日，敬請拭目以待。&nbsp;&nbsp;王仲堃、李玠樺、林冠名、林厚成、姚仲涵、&nbsp;陳萬仁、黃博志、劉瀚之&nbsp;&nbsp;展期：04/07-04/28, 2007開幕：19:00, 04/06（五）&nbsp;座談會：15:00, 04/14（六）&nbsp;&nbsp;華山藝文園區，中2-A館（果酒倉庫）&nbsp;地址：台北市中正區八德路一段一號&nbsp;電話：02-33436376&nbsp;&nbsp;&nbsp;&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<font color="#999999"><span style="font-size: 10pt; color: black; font-family: 新細明體"><p style="background: white; margin: 0cm 0cm 0pt" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: 新細明體">「假動作</span><span style="font-size: 10pt; color: #999999"><font face="Times New Roman">2</font></span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">」八位年輕的藝術創作者：王仲堃、李玠樺、林冠名、林厚成、姚仲涵、陳萬仁、黃博志、劉瀚之繼去年在南海藝廊「假動作</span><span style="font-size: 10pt; color: #999999; font-family: Arial">&nbsp;</span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">」之後，</span><span style="font-size: 10pt; color: #999999"><font face="Times New Roman">2007</font></span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">年再以全新力作拔地而起，奮力向前；</span><span style="font-size: 10pt; color: #999999"><font face="Times New Roman">4</font></span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">月</span><span style="font-size: 10pt; color: #999999"><font face="Times New Roman">7</font></span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">日</span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">，敬請拭目以待。</span></p><p>&nbsp;</p><table border="0" cellspacing="1" cellpadding="1" style="width: 100%"><tbody><tr><td></td><td>&nbsp;</td></tr><tr><td><span style="font-size: 10pt; color: black; font-family: 新細明體"><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span><strong><font color="#999999">王仲堃、李玠樺、林冠名、林厚成、姚仲涵、</font></strong></span></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span><strong><font color="#999999">陳萬仁、黃博志、劉瀚之</font></strong></span></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span style="font-size: 9pt; color: #999999; font-family: Arial"></span></p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span style="font-size: 9pt; color: #999999; font-family: Arial"></span></p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span style="font-size: 9pt; color: #999999; font-family: Arial"></span></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><strong><font color="#999999"><span>展期：<font face="Times New Roman">04/07-04/28, 2007</font></span></font></strong></p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><strong><font color="#999999"><span>開幕：<font face="Times New Roman">19:00, 04/06</font>（五）</span></font></strong></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><strong><font color="#999999"><span>座談會：<font face="Times New Roman">15:00, 04/14</font>（六）</span></font></strong></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span style="font-size: 9pt; color: #999999; font-family: Arial"></span></p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span style="font-size: 9pt; color: #999999; font-family: Arial"></span></p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span style="font-size: 9pt; color: #999999; font-family: Arial"></span></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><strong><font color="#999999"><span>華山藝文園區，中<font face="Times New Roman">2-A</font>館（果酒倉庫）</span></font></strong></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><span><strong><font color="#999999">地址：台北市中正區八德路一段一號</font></strong></span></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right"><strong><span><font color="#999999">電話：<font face="Times New Roman">02-33436376</font></font></span></strong></p><p>&nbsp;</p><p style="background: white; margin: 0cm 0cm 0pt; text-align: right" class="MsoNormal" align="right">&nbsp;</p></span></td><td><img src="http://blog.roodo.com/nanhai/bd45de5b.bmp" border="0" alt="" width="207" height="307" align="baseline" /></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr></tbody></table></span></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2971661.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2971661.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2971661.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Wed, 04 Apr 2007 15:09:17 +0800</pubDate>
</item>
<item>
	<title>【轉載】台藝大菲林影展</title>
	<description><![CDATA[
			台藝大菲林影展
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="4" color="#999999">台藝大菲林影展</font></p><p align="center"><img src="http://blog.roodo.com/nanhai/5ed30b78.bmp" border="0" alt="" width="250" height="356" align="baseline" /></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2902135.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2902135.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2902135.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Fri, 30 Mar 2007 18:49:49 +0800</pubDate>
</item>
<item>
	<title>【轉載】剪出繁華似錦的人生─李煥章</title>
	<description><![CDATA[
			&nbsp;給李老師的粉絲們：剪師大師李煥章本週六也在世界書局～剪紙喔.&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<span style="font-size: 14pt; font-family: 華康古印體"><span><p>&nbsp;</p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 18pt; color: #993300; font-family: 華康古印體"><span style="font-size: 18pt; color: #993300; font-family: 華康古印體"><font face="細明體" size="2" color="#000000">給李老師的粉絲們：</font></span></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 18pt; color: #993300; font-family: 華康古印體"><span style="font-size: 18pt; color: #993300; font-family: 華康古印體">剪師大師李煥章</span></span></strong></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><strong><span style="font-size: 18pt; color: #993300; font-family: 華康古印體"><span style="font-size: 18pt; color: #993300; font-family: 華康古印體">本週六也在世界書局～剪紙喔.</span></span></strong></p><span style="font-size: 10pt; color: #999999; font-family: 全真仿宋體"><p>&nbsp;</p></span></span></span>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2995981.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2995981.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2995981.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Fri, 30 Mar 2007 18:05:37 +0800</pubDate>
</item>
<item>
	<title>【轉載】三十年代新文學風華</title>
	<description><![CDATA[
			&nbsp;三十年代新文學風華（中國新文學珍本展）
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center">&nbsp;</p><p align="center"><font size="4" color="#999999">三十年代新文學風華（中國新文學珍本展）</font></p><p align="center"><img src="http://blog.roodo.com/nanhai/43e8569d.jpg" border="0" alt="" width="359" height="499" align="baseline" /></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2902183.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2902183.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2902183.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 24 Mar 2007 10:04:49 +0800</pubDate>
</item>
<item>
	<title>【轉載】全區保留樂生療養院</title>
	<description><![CDATA[
			也許，你和我們一樣。早就知道樂生有一群人為了自己的夢想在爭取奮鬥著，你可以在大大小小的活動中，看到他們的身影、聽見他們的歌聲。但是除了一種敬佩以及精神支持的心以外。從來沒想過真的來做些什麼。但就從現在開始，你可以加入我們的串連行動。
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font color="#999999">也許，你和我們一樣。</font></p><p><font color="#999999">早就知道樂生有一群人為了自己的夢想在爭取奮鬥著，你可以在大大小小的活動中，看到他們的身影、聽見他們的歌聲。但是除了一種敬佩以及精神支持的心以外。從來沒想過真的來做些什麼。</font></p><p><br /><font color="#999999">但就從現在開始，你可以加入我們的串連行動。</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2901767.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2901767.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2901767.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 18 Mar 2007 16:19:18 +0800</pubDate>
</item>
<item>
	<title>【轉載】2007美術節藝術市集</title>
	<description><![CDATA[
			2007美術節藝術市集時間：3月24日(六) 10:00-20:30、3月25日(日)10:00-17:00地點：美術館廣場聯絡人　：  周先生25957656#317 
		]]>
	</description>
	<content:encoded><![CDATA[
			<font color="#999999">2007美術節藝術市集<br />時間：3月24日(六) 10:00-20:30、3月25日(日)10:00-17:00<br />地點：美術館廣場<br />聯絡人　：  周先生25957656#317</font> 
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2826265.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2826265.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2826265.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Mon, 05 Mar 2007 17:45:52 +0800</pubDate>
</item>
<item>
	<title>【轉載】一卡皮箱SHOW自己</title>
	<description><![CDATA[
			活動時間 日期：2007年3/17、4/14、5/12、6/9、7/14（每個月第二個禮拜六，遇雨順延至下週）地點：敦南誠品與新光大樓戶外廣場時間：1:00pm-11:00pm
		]]>
	</description>
	<content:encoded><![CDATA[
			<font color="#999999">活動時間 <br />日期：2007年3/17、4/14、5/12、6/9、7/14（每個月第二個禮拜六，遇雨順延至下週）<br />地點：敦南誠品與新光大樓戶外廣場<br />時間：1:00pm-11:00pm</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2826015.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2826015.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2826015.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Mon, 05 Mar 2007 15:57:33 +0800</pubDate>
</item>
<item>
	<title>【轉載】i-MART!!! I&#039;MART!!! </title>
	<description><![CDATA[
			   
		]]>
	</description>
	<content:encoded><![CDATA[
			<p>   <img hspace="0" src="http://blog.roodo.com/nanhai/150b76a7.gif" align="baseline" border="0" /></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2826351.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2826351.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2826351.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 04 Mar 2007 18:05:22 +0800</pubDate>
</item>
<item>
	<title>【轉載】【節錄】中國廣州市集報導</title>
	<description><![CDATA[
			                                   
		]]>
	</description>
	<content:encoded><![CDATA[
			<p>                          <img style="WIDTH: 286px; HEIGHT: 174px" height="174" hspace="0" src="http://blog.roodo.com/nanhai/bfcc02ad.jpg" width="286" align="baseline" border="0" /></p><p>         <img hspace="0" src="http://blog.roodo.com/nanhai/625df86f.jpg" align="baseline" border="0" /></p><p /><p><img style="WIDTH: 238px; HEIGHT: 392px" height="392" hspace="0" src="http://blog.roodo.com/nanhai/e547449b.jpg" width="238" align="baseline" border="0" /><img style="WIDTH: 226px; HEIGHT: 374px" height="374" hspace="0" src="http://blog.roodo.com/nanhai/a3c8ad8c.jpg" width="226" align="baseline" border="0" /></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2809995.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2809995.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2809995.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 04 Mar 2007 17:01:16 +0800</pubDate>
</item>
<item>
	<title>【轉載】時光雜誌-碎花生影展</title>
	<description><![CDATA[
			碎花生影展雜誌時光中的三條人Away with Words放映會時間 3.9（五）19:30地點 Salt Peanuts 台北市泰順街60巷23號／2368-1019www.wretch.cc/blog/saltpeanuts&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="left"><font color="#999999"><img src="http://blog.roodo.com/nanhai/26934c96.jpg" border="0" alt="" width="300" height="314" align="baseline" /></font></p><p align="left"><font color="#999999">碎花生影展<br />雜誌時光中的三條人Away with Words放映會</font></p><p align="left"><font color="#999999">時間 3.9（五）19:30<br />地點 Salt Peanuts 台北市泰順街60巷23號／2368-1019<br /></font><a href="http://www.wretch.cc/blog/saltpeanuts"><font color="#999999">www.wretch.cc/blog/saltpeanuts</font></a></p><font color="#cccccc"><p align="left">&nbsp;</p></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2806417.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2806417.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2806417.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 04 Mar 2007 10:21:27 +0800</pubDate>
</item>
<item>
	<title>【轉載】藝術與公共領域-藝術進入社區 研討會</title>
	<description><![CDATA[
			時間：96.3/9~3/11國立高雄師範大學　地址：高雄市和平一路116號研討會會場：高師大國際會議廳（活動中心三樓）活動轉載自跨領域藝術研究所：http://www.nknu.edu.tw/~inter-art/news.html詳細的交通路線圖請上高師大跨領域藝術研究所
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font color="#999999">時間：96.3/9~3/11<br />國立高雄師範大學　地址：高雄市和平一路116號<br />研討會會場：高師大國際會議廳（活動中心三樓）<br />活動轉載自跨領域藝術研究所：</font><a href="http://www.nknu.edu.tw/~inter-art/news.html"><font color="#999999">http://www.nknu.edu.tw/~inter-art/news.html</font></a><br /><font color="#999999">詳細的交通路線圖請上高師大跨領域藝術研究所</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2806501.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2806501.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2806501.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 03 Mar 2007 10:45:40 +0800</pubDate>
</item>
<item>
	<title>【轉載】台東伽蘭手創市集</title>
	<description><![CDATA[
			2007 伽路蘭手創市集 
		]]>
	</description>
	<content:encoded><![CDATA[
			<h3 style="MARGIN: auto 0cm; TEXT-ALIGN: center" align="center"><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Verdana">2007 </span><span style="COLOR: #999999; mso-ascii-font-family: Verdana; mso-hansi-font-family: Verdana"><font face="新細明體">伽路蘭手創市集</font></span><span style="COLOR: #999999; FONT-FAMILY: Verdana"> <span lang="EN-US"><p /><p align="center"><img hspace="0" src="http://blog.roodo.com/nanhai/020e0535.jpg" align="baseline" border="0" /></p></span></span></h3>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2711557.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2711557.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2711557.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Fri, 09 Feb 2007 15:55:12 +0800</pubDate>
</item>
<item>
	<title>【轉載】台東部落手作市集</title>
	<description><![CDATA[
			台東創意市集年假活動 　部落手作市集／玩到元宵　台東　中山路寶町藝文中心　
		]]>
	</description>
	<content:encoded><![CDATA[
			<p class="MsoNormal" style="BACKGROUND: #f9f9f9; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 150%; mso-pagination: widow-orphan"><span style="COLOR: #999999; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">台東創意市集</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; mso-font-kerning: 0pt"></span></p><p /><span style="FONT-SIZE: 12pt; COLOR: #999999; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-ansi-language: EN-US; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA">年假活動</span><span style="FONT-SIZE: 12pt; COLOR: #999999; FONT-FAMILY: Arial; mso-fareast-font-family: 新細明體; mso-ansi-language: EN-US; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA"> </span><span style="FONT-SIZE: 12pt; COLOR: #999999; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-ansi-language: EN-US; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA">　部落手作市集／玩到元宵　台東　中山路寶町藝文中心　</span><span lang="EN-US" style="FONT-SIZE: 12pt; COLOR: #999999; FONT-FAMILY: Arial; mso-fareast-font-family: 新細明體; mso-ansi-language: EN-US; mso-fareast-language: ZH-TW; mso-bidi-language: AR-SA"><br /></span>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2711479.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2711479.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2711479.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Fri, 09 Feb 2007 15:43:58 +0800</pubDate>
</item>
<item>
	<title>【轉載】來尬後續報導</title>
	<description><![CDATA[
			p.s.照片轉載自來尬部落格     
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font color="#999999">p.s.照片轉載自來尬部落格</font></p><p align="center"><img style="WIDTH: 194px; HEIGHT: 140px" height="140" hspace="0" src="http://blog.roodo.com/nanhai/d6d22603.jpg" width="194" align="baseline" border="0" />     <img height="227" hspace="0" src="http://blog.roodo.com/nanhai/3fb67841.jpg" width="180" align="baseline" border="0" /></p><p align="center"><img height="159" hspace="0" src="http://blog.roodo.com/nanhai/aa30df1f.jpg" width="252" align="baseline" border="0" /></p><p align="center" /><p align="center" /><p align="center" /><p align="center" />
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2695491.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2695491.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2695491.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 21 Jan 2007 15:11:44 +0800</pubDate>
</item>
<item>
	<title>【轉載】故宮戶外藝術節</title>
	<description><![CDATA[
			地       點：故宮正面廣場時       間：2007年2月3日至2月11日飲料贊助：統一星巴克 故宮再啟、好戲連台！2007年2月3日起，到故宮您不只可以欣賞全新的文物展出，一系列戶外藝術節活動，也將在故宮正面廣場展開，有形形色色的「創意市集」、活潑有趣的「藝術體驗區」，以及老少咸宜的「星光劇場」等，將著全面顛覆您對故宮的印象。「星光劇場」每場演出前300名觀眾，可獲得星巴克每日精選咖啡一杯。資料轉載自：http://www.npm.gov.tw/hotnews/reopens/outdoor_art_festival_ch.html
		]]>
	</description>
	<content:encoded><![CDATA[
			<p class="MsoNormal" style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 21pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-pagination: widow-orphan"><b><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">地</span></b><b><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">       </span></b><b><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">點：</span></b><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">故宮正面廣場</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt"><br /></span><b><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">時</span></b><b><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">       </span></b><b><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">間：</span></b><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">2007</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">年</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">2</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">月</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">3</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">日至</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">2</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">月</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">11</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">日</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt"><br /></span><b><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">飲料贊助：</span></b><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">統一星巴克</span><span style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt"> <span lang="EN-US"></span></span></p><p /><p class="MsoNormal" style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 21pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-pagination: widow-orphan"><b><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">故宮再啟、好戲連台！</span></b><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt"><br />2007</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">年</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">2</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">月</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">3</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">日起，到故宮您不只可以欣賞全新的文物展出，一系列戶外藝術節活動，也將在故宮正面廣場展開，有形形色色的<b>「創意市集」</b>、活潑有趣的<b>「藝術體驗區」</b>，以及老少咸宜的<b>「星光劇場」</b>等，將著全面顛覆您對故宮的印象。<b>「星光劇場」</b>每場演出前</span><span lang="EN-US" style="COLOR: #999999; FONT-FAMILY: Arial; LETTER-SPACING: 1pt; mso-font-kerning: 0pt">300</span><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">名觀眾，可獲得星巴克每日精選咖啡一杯。</span></p><p class="MsoNormal" style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 21pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-pagination: widow-orphan"><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt"></span></p><p class="MsoNormal" style="BACKGROUND: white; MARGIN: 0cm 0cm 0pt; LINE-HEIGHT: 21pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-pagination: widow-orphan"><span style="COLOR: #999999; FONT-FAMILY: 新細明體; LETTER-SPACING: 1pt; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial; mso-font-kerning: 0pt">資料轉載自：<a href="http://www.npm.gov.tw/hotnews/reopens/outdoor_art_festival_ch.html">http://www.npm.gov.tw/hotnews/reopens/outdoor_art_festival_ch.html</a></span></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2711384.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2711384.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2711384.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 21 Jan 2007 15:11:42 +0800</pubDate>
</item>
<item>
	<title>【轉載】樂生影展</title>
	<description><![CDATA[
			影展資訊：時間：2/4（日）2/11（日）下午三點到晚上九點&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 地點：樂生療養院（台北縣新莊市中正路794號）交通方式：（1）&nbsp;&nbsp;&nbsp; 捷運西門站六號出口至成都路上搭625號公車，到樂生療養院站下車。（2）&nbsp;捷運亞東醫院站搭籃37號公車，到樂生療養院站下車。（3）&nbsp;自行開車前往：台北縣新莊市中正路794號（過中興橋再上重新橋中正路直行過輔大後四公里）2/11號活動詳情請見http://www.wretch.cc/blog/happylosheng
		]]>
	</description>
	<content:encoded><![CDATA[
			<p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><font color="#999999"><span style="font-family: 新細明體">影展資訊：時間：</span><span>2/4</span><span style="font-family: 新細明體">（日）</span><span>2/11</span><span style="font-family: 新細明體">（日）下午三點到晚上九點</span></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><font color="#999999"><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><span style="font-family: 新細明體">地點：樂生療養院（台北縣新莊市中正路</span><span>794</span><span style="font-family: 新細明體">號）</span></font></p><font color="#999999"><span style="font-family: 新細明體"><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><span style="font-family: 新細明體"><font color="#999999">交通方式：</font></span></p><p style="margin: 0cm 0cm 0pt 36pt; text-indent: -36pt; tab-stops: list 36.0pt" class="MsoNormal" align="center"><font color="#999999"><span><span><font face="Times New Roman">（1）<span style="font-weight: normal; font-size: 7pt; line-height: normal; font-style: normal; font-variant: normal">&nbsp;&nbsp;&nbsp; </span></font></span></span><span style="font-family: 新細明體">捷運西門站六號出口至成都路上搭</span><span><font face="Times New Roman">625</font></span><span style="font-family: 新細明體">號公車，到樂生療養院站下車。</span></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><font color="#999999"><span style="font-family: 新細明體">（</span><span><font face="Times New Roman">2</font></span><span style="font-family: 新細明體">）</span><font face="Times New Roman">&nbsp;</font><span style="font-family: 新細明體">捷運亞東醫院站搭籃</span><span><font face="Times New Roman">37</font></span><span style="font-family: 新細明體">號公車，到樂生療養院站下車。</span></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><font color="#999999"><span style="font-family: 新細明體">（</span><span><font face="Times New Roman">3</font></span><span style="font-family: 新細明體">）</span><font face="Times New Roman">&nbsp;</font><span style="font-family: 新細明體">自行開車前往：台北縣新莊市中正路</span><span><font face="Times New Roman">794</font></span><span style="font-family: 新細明體">號（過中興橋再上重新橋中正路直行過輔大後四公里）</span></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><font color="#999999"></font></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><span style="font-family: 新細明體"><font color="#999999">2/11號活動詳情請見</font></span><span><a href="http://www.wretch.cc/blog/happylosheng"><font face="Times New Roman"><font color="#999999">http://www.wretch.cc/blog/happylo</font><font color="#999999">sheng</font></font></a></span></p></span></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2695261.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2695261.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2695261.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 21 Jan 2007 15:00:22 +0800</pubDate>
</item>
<item>
	<title>【轉載】第二屆吵年獸音樂藝術季</title>
	<description><![CDATA[
			立春音樂藝術祭 二月三號四號十號十一號 台北市永康街公園
		]]>
	</description>
	<content:encoded><![CDATA[
			<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><span style="COLOR: #191919; mso-hansi-font-family: Verdana; mso-ascii-font-family: Verdana"><font face="新細明體" color="#999999">立春音樂藝術祭</font></span><font color="#999999"><span lang="EN-US" style="COLOR: #191919; FONT-FAMILY: Verdana"> </span></font></p><p class="description" style="MARGIN: auto 0cm" align="center"><span style="COLOR: #191919; mso-hansi-font-family: Verdana; mso-ascii-font-family: Verdana"><font size="+0">二月三號四號十號十一號</font></span><font color="#999999"><span lang="EN-US" style="COLOR: #191919; FONT-FAMILY: Verdana"> </span></font></p><p class="description" style="MARGIN: auto 0cm" align="center"><font color="#999999"><span lang="EN-US" style="COLOR: #191919; FONT-FAMILY: Verdana"><font color="#999999">台北市永康街公園</font></span></font></p><p class="description" style="MARGIN: auto 0cm" align="center"><font color="#999999"><span lang="EN-US" style="COLOR: #191919; FONT-FAMILY: Verdana"><img style="WIDTH: 466px; HEIGHT: 359px" height="359" hspace="0" src="http://blog.roodo.com/nanhai/6a6ac307.jpg" width="466" align="baseline" border="0" /></span></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2691733.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2691733.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2691733.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 20 Jan 2007 20:46:23 +0800</pubDate>
</item>
<item>
	<title>【轉載】2007年國立傳統藝術中心假日市集工藝師</title>
	<description><![CDATA[
			2007年國立傳統藝術中心假日市集工藝師及街頭表演藝人招募計畫聯絡方式電話：03-9705815轉1315cell：0919901637E- mail：mazu@ncfta.gov.tw
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="comments-body" align="left"><font color="#999999">2007年國立傳統藝術中心假日市集工藝師<br />及街頭表演藝人招募計畫<br />聯絡方式<br />電話：03-9705815轉1315<br />cell：0919901637<br />E- mail：mazu@ncfta.gov.tw<br /></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2672113.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2672113.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2672113.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 20 Jan 2007 19:03:04 +0800</pubDate>
</item>
<item>
	<title>【轉載】牯嶺街手創小舖</title>
	<description><![CDATA[
			牯嶺街手創小舖終於開張囉，正如火如荼募集手創達人進駐寄賣，歡迎轉告有興趣的朋友一起來報名！&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<!--StartFragment --><div align="center"><font color="#999999">牯嶺街手創小舖終於開張囉，正如火如荼募集手創達人進駐寄賣，歡迎轉告有興趣的朋友一起來報名！</font></div><div align="left"></div><div align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; <img style="width: 295px; height: 453px" src="http://blog.roodo.com/nanhai/7e5ef96d.jpg" border="0" alt="" width="295" height="453" align="baseline" /></div><div align="left">&nbsp;&nbsp;</div><div class="MsoNormal" align="left" style="margin: 0cm 0cm 0pt; text-align: center"><span><p>&nbsp;</p></span></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2671928.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2671928.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2671928.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 20 Jan 2007 16:24:50 +0800</pubDate>
</item>
<item>
	<title>【轉載】《雜誌時光》Mag  Days</title>
	<description><![CDATA[
			展出時間&nbsp; 2007.2.15（四）～3.15（四）開幕雜會&nbsp; 2.23（五）19:00展出地點　Salt Peanuts 台北市泰順街60巷23號http://www.wretch.cc/blog/saltpeanuts開放時間&nbsp; 週一～週日12:00-24:00／2368-1019展出作者　林亦軒、王姿驊主辦單位&nbsp; 兩人出品&nbsp; http://blog.roodo.com/futari-issue新聞聯絡人羅喬偉兩人出品 futari-issuefutari.issue@gmail.com 0918930470Tel／2873-3173 Fax／2873-3183台灣台北市士東路63號
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font color="#999999">展出時間&nbsp; 2007.2.15（四）～3.15（四）<br />開幕雜會&nbsp; 2.23（五）19:00<br />展出地點　Salt Peanuts 台北市泰順街60巷23號<br /></font><a href="http://www.wretch.cc/blog/saltpeanuts"><font color="#999999">http://www.wretch.cc/blog/saltpeanuts</font></a><br /><font color="#999999">開放時間&nbsp; 週一～週日12:00-24:00／2368-1019<br />展出作者　林亦軒、王姿驊<br />主辦單位&nbsp; 兩人出品&nbsp; </font><a href="http://blog.roodo.com/futari-issue"><font color="#999999">http://blog.roodo.com/futari-issue</font></a></p><p align="center"><font color="#999999">新聞聯絡人</font></p><p align="center"><font color="#999999">羅喬偉<br />兩人出品 futari-issue<br /></font><a href="mailto:futari.issue@gmail.com"><font color="#999999">futari.issue@gmail.com</font></a><font color="#999999"> 0918930470<br />Tel／2873-3173 Fax／2873-3183<br />台灣台北市士東路63號</font></p><p align="center"><img style="width: 480px; height: 368px" src="http://blog.roodo.com/nanhai/77e7d5e1.gif" border="0" alt="" width="480" height="368" align="baseline" /></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2691660.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2691660.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2691660.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 20 Jan 2007 15:03:13 +0800</pubDate>
</item>
<item>
	<title>【轉載】《台中20號倉庫   來尬(La Gare)》--創意市集活動辦法</title>
	<description><![CDATA[
			台中20號倉庫&lt;來尬(La Gare)創意市集&gt;活動辦法&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p style="margin: 0cm 0cm 0pt; text-align: center" class="MsoNormal" align="center"><font size="4"><strong><span style="font-size: 16pt; font-family: 新細明體">台中</span></strong><strong><span style="font-size: 16pt">20</span></strong><strong><span style="font-size: 16pt; font-family: 新細明體">號倉庫</span></strong><strong><span style="font-size: 16pt">&lt;</span></strong><strong><span style="font-size: 16pt; font-family: 新細明體">來尬</span></strong><strong><span style="font-size: 16pt">(La Gare)</span></strong><strong><span style="font-size: 16pt; font-family: 新細明體">創意市集</span></strong><strong><span style="font-size: 16pt">&gt;</span></strong><strong><span style="font-size: 16pt; font-family: 新細明體">活動辦法</span></strong></font><strong></strong></p><p>&nbsp;</p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2372242.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2372242.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2372242.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Thu, 26 Oct 2006 22:55:29 +0800</pubDate>
</item>
<item>
	<title>【轉載】《\^o^/ SIGHT─華山藝術市集》強力招募中</title>
	<description><![CDATA[
			《本消息轉載自http://www.avat-art.org/wordpress/》開市場次：場次一：10月21日、10月22日 下午1點至晚上9點場次二：10月28日、10月29日 下午1點至晚上9點開市地點：華山文化園區 (台北市八德路一段一號1樓)活動內容：1.藝術創意市集2.藝術創意工作室3.現場藝術/音樂表演
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="right"><font size="2"><strong>《本消息轉載自<a href="http://www.avat-art.org/wordpress/">http://www.avat-art.org/wordpress/</a></strong><font size="2"><strong>》</strong></font></font></p><p><font size="2">開市場次：<br />場次一：10月21日、10月22日 下午1點至晚上9點<br />場次二：10月28日、10月29日 下午1點至晚上9點</font></p><p><font size="2">開市地點：<br />華山文化園區 (台北市八德路一段一號1樓)</font></p><p><font size="2">活動內容：<br />1.藝術創意市集<br />2.藝術創意工作室<br />3.現場藝術/音樂表演</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2199096.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2199096.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2199096.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Tue, 26 Sep 2006 23:43:22 +0800</pubDate>
</item>
<item>
	<title>【轉載】樂生厝邊市集</title>
	<description><![CDATA[
			 《本消息轉載自樂生院》厝 邊 市 集
		]]>
	</description>
	<content:encoded><![CDATA[
			<a href="http://www.flickr.com/photos/nanhai/238175855/" title="Photo Sharing"><img src="http://static.flickr.com/90/238175855_7b129009e2_s.jpg" alt="樂生厝邊市集" width="75" height="75" align="left" /></a> <p align="right"><font size="2"><strong>《本消息轉載自<a href="http://www.wretch.cc/blog/happylosheng" target="_blank">樂生院</a></strong></font><font size="2"><strong>》</strong></font></p><p align="center"><strong><font size="4">厝 邊 市 集</font></strong></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2124055.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2124055.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2124055.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 09 Sep 2006 14:12:49 +0800</pubDate>
</item>
<item>
	<title>【轉載】『光合作用』‧靜力劇場</title>
	<description><![CDATA[
			 《本消息轉載自靜力劇場》『光合作用』‧靜力劇場燈光肢體創作融合劇場空間、另類裝置藝術、神奇影音特效從跨界肢體再創劇場新觀點
		]]>
	</description>
	<content:encoded><![CDATA[
			<a href="http://www.flickr.com/photos/nanhai/238168330/" title="Photo Sharing"><img src="http://static.flickr.com/79/238168330_79b1378da9_s.jpg" alt="光合作用" width="75" height="75" align="left" /></a> <p align="right"><strong><font size="2">《本消息轉載自<a href="http://98.to/statictheatre" target="_blank">靜力劇場</a></font></strong><strong><font size="2">》</font></strong></p><p align="center"><strong><font face="標楷體"><font size="4">『光合作用』‧靜力劇場<br /></font><font size="2">燈光肢體創作<br />融合劇場空間、另類裝置藝術、神奇影音特效<br />從跨界肢體再創劇場新觀點</font></font></strong></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2123602.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2123602.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2123602.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 09 Sep 2006 11:20:22 +0800</pubDate>
</item>
<item>
	<title>【轉載】CAMPO 9月9日@西門町電影主題公園</title>
	<description><![CDATA[
			 《本消息轉載自CAMPO生活藝術狂歡節》9月9日西門町電影主題公園你無法想像的超現實時光隧道
		]]>
	</description>
	<content:encoded><![CDATA[
			<img src="http://idisk.mac.com/lucien0407/Public/campo/campo_120x120.gif" alt="" width="75" height="75" align="left" /> <p align="right"><strong><font size="2">《本消息轉載自<a href="http://campolive.blogspot.com/" target="_blank">CAMPO生活藝術狂歡節</a></font></strong><strong><font size="2">》</font></strong></p><p align="center"><font size="2"><strong><font size="4">9月9日<br />西門町電影主題公園<br /></font></strong>你無法想像的超現實時光隧道</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2095903.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2095903.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2095903.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 02 Sep 2006 16:36:30 +0800</pubDate>
</item>
<item>
	<title>【轉載】S.O.S. 之卡里加利博士的小屋</title>
	<description><![CDATA[
			 《本消息轉載自原子筆》Sound of Silence 靜默之聲&nbsp;卡里加利博士的小屋The Cabinet of Dr. Caligari
		]]>
	</description>
	<content:encoded><![CDATA[
			<a href="http://static.flickr.com/74/229060198_85c1d1cc04.jpg"><img src="http://static.flickr.com/74/229060198_85c1d1cc04.jpg" alt="The Cabinet of Dr. Caligari" width="75" height="75" align="left" /></a> <p align="right"><strong><font size="2">《本消息轉載自<a href="http://blog.sina.com.tw/atom/index.php?pbgid=17143" target="_blank">原子筆</a></font></strong><strong><font size="2">》</font></strong></p><p align="center"><font size="4"><strong>Sound of Silence 靜默之聲</strong></font>&nbsp;</p><p align="center"><font size="2"><strong>卡里加利博士的小屋The Cabinet of Dr. Caligari</strong></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2095789.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2095789.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2095789.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 02 Sep 2006 16:15:09 +0800</pubDate>
</item>
<item>
	<title>【轉載】以物易物市集</title>
	<description><![CDATA[
			《本消息轉載自BBROTHER http://www.wretch.cc/blog/Bbrother》第三次 易子而食 以 物 易 物 市 集（完整版）
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="right"><font size="2"><strong>《本消息轉載自BBROTHER </strong><a href="http://www.wretch.cc/blog/Bbrother"><strong>http://www.wretch.cc/blog/Bbrother</strong></a><strong>》</strong></font></p><p align="center"><font size="4">第三次 易子而食<strong> 以 物 易 物 市 集</strong>（完整版）</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2059825.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2059825.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2059825.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Thu, 24 Aug 2006 17:50:41 +0800</pubDate>
</item>
<item>
	<title>♪溫羅汀晴空書展強力徵募創意攤位及義工!!!</title>
	<description><![CDATA[
			消息來源\David由溫羅汀行動聯盟主辦，將於2006年1月起舉行溫羅汀聯合性書展及相關活動。[溫羅汀獨立書店‧歐洲四國書體裝置展]搭配台北閱讀節與第14屆台北國際書展主題，於1月16日~2月16日靜／動態地於溫羅汀參與店家內進行。1月14、15日則為[晴空書展暨創意市集]，主辦單位預計使用包括溫州街沿線及耕莘文教院廣場等戶外空間展出。除了邀集書店、獨立音樂廠牌、人文咖啡館、NGOs等主題設攤，講座、音樂表演、電影播放、腦天氣影音藝術祭MV展等活動，更希望以嘉年華式的活潑氣氛來活絡氣氛，讓閱讀和創意的空氣觸手即可撲捉。別說創意市集已經太流行潮，您的熱情參與將是溫羅汀風景的另一個DIY主義。也許我們無法提供豪華的場地，但溫羅汀的藝文拼圖，正等著您來活力四射!!! 
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2">消息來源\David</font></p><p><font size="2">由溫羅汀行動聯盟主辦，將於2006年1月起舉行溫羅汀聯合性書展及相關活動。[溫羅汀獨立書店‧歐洲四國書體裝置展]搭配台北閱讀節與第14屆台北國際書展主題，於1月16日~2月16日靜／動態地於溫羅汀參與店家內進行。</font></p><p><font size="2">1月14、15日則為[晴空書展暨創意市集]，主辦單位預計使用包括溫州街沿線及耕莘文教院廣場等戶外空間展出。除了邀集書店、獨立音樂廠牌、人文咖啡館、NGOs等主題設攤，講座、音樂表演、電影播放、腦天氣影音藝術祭MV展等活動，更希望以嘉年華式的活潑氣氛來活絡氣氛，讓閱讀和創意的空氣觸手即可撲捉。別說創意市集已經太流行潮，您的熱情參與將是溫羅汀風景的另一個DIY主義。也許我們無法提供豪華的場地，但溫羅汀的藝文拼圖，正等著您來活力四射!!!</font> </p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/926057.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/926057.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/926057.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Thu, 29 Dec 2005 00:05:50 +0800</pubDate>
</item>
<item>
	<title>♪胡同三年!三大廠牌衝擊!完整攻略版!</title>
	<description><![CDATA[
			文\仁許前言-台中知名餐廳-胡同三歲了耶這可是一件不得了的事情話說仁許跟他太太當初就是在胡同認識的都已經這麼久了對如今進攻胡同的時間來了請繼續看完攻略!
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2">文\仁許</font></p><p><font size="2">前言-<br />台中知名餐廳-胡同<br />三歲了耶<br />這可是一件不得了的事情<br />話說仁許跟他太太當初就是在胡同認識的<br />都已經這麼久了<br />對<br />如今進攻胡同的時間來了<br />請繼續看完攻略!</font></p></font /></font /></font />
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/922303.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/922303.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/922303.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Wed, 28 Dec 2005 01:10:27 +0800</pubDate>
</item>
<item>
	<title>♪Dream Case</title>
	<description><![CDATA[
			消息來源\DavidDear FriendsDream Case 終於創刊了而且一次就出兩本──《日常劇場》、《製造風景》 如果你喜歡王信智和鍾霓獨特的文字氛圍或是覺得《我就是孩子氣》是本有趣的閱讀文本歡迎你一起來參加Dream Case的創刊Party&nbsp; 如果你在思索Dream Case是什麼呀？那麼我們更希望你能給我們機會讓我們與你分享一本書市中難得一見的跨界讀本，一本跨越了文學、設計、音樂、電影、藝術等多個領域並將blog與雜誌的概念，創新地以「書」的形式來呈現的「雜誌書」Welcome to Dream Case!相關閱讀:a room with a view
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="1">消息來源\<font face="arial,helvetica,sans-serif">David</font></font></p><p><font face="arial,helvetica,sans-serif" size="2">Dear Friends</font></p><p><font size="2"><font face="arial,helvetica,sans-serif">Dream Case</font> 終於創刊了而且一次就出兩本──《日常劇場》、《製造風景》 如果你喜歡王信智和鍾霓獨特的文字氛圍或是覺得《我就是孩子氣》是本有趣的閱讀文本歡迎你一起來參加<font face="arial,helvetica,sans-serif">Dream Case</font>的創刊<font face="arial,helvetica,sans-serif">Party&nbsp;</font> 如果你在思索<font face="arial,helvetica,sans-serif">Dream Case</font>是什麼呀？那麼我們更希望你能給我們機會讓我們與你分享一本書市中難得一見的跨界讀本，一本跨越了文學、設計、音樂、電影、藝術等多個領域並將<font face="arial,helvetica,sans-serif">blog</font>與雜誌的概念，創新地以「書」的形式來呈現的「雜誌書」</font></p><p><font face="arial,helvetica,sans-serif" size="2">Welcome to Dream Case!</font></p><p><font face="Arial" size="2">相關閱讀:<a accesskey="1" href="http://blog.roodo.com/kieferwang/"><font color="#666666">a room with a view</font></a></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/865130.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/865130.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/865130.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Thu, 15 Dec 2005 00:49:32 +0800</pubDate>
</item>
<item>
	<title>♪暴 走 世 代 之 機 車</title>
	<description><![CDATA[
			【南海噴嚏王】各種創意活動訊息，歡迎來信刊登 nanhai@yam.com （如遇稿擠將不另行通知）消息來源\David&nbsp;騎上機車出遊去&gt;&gt;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2"><font color="#cccccc"><strong>【南海噴嚏王】</strong>各種創意活動訊息，歡迎來信刊登 </font></font><a href="mailto:nanhai@yam.com"><font size="2" color="#cccccc">nanhai@yam.com</font></a><font size="2" color="#cccccc"> （如遇稿擠將不另行通知）</font></p><p><font size="1">消息來源\David</font></p><p align="center"><img src="http://static.flickr.com/34/72859400_c018cad16c_o.gif" alt="暴走世代之機車" width="300" height="267" /></p><p>&nbsp;</p><p><font size="2">騎上機車出遊去&gt;&gt;</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/856940.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/856940.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/856940.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Tue, 13 Dec 2005 00:49:38 +0800</pubDate>
</item>
<item>
	<title>♪水越偏愛手記行動趴吐</title>
	<description><![CDATA[
			【南海噴嚏王】各種創意活動訊息，歡迎來信刊登 nanhai@yam.com （如遇稿擠將不另行通知）消息來源\David在這裡　水越與地球碰撞摩擦燃燒　一年一次的降落將會看見，紅色星球碰撞綠色設計降落水越歷年手記展，軌跡相近的時尚、建築雜誌特賣，聚集登陸的布囉唆廣場布娃，暴走世代的機車物語與手工卡片│futari-issue.us│以及隕落的瑕疵商品特賣
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2"><font color="#cccccc"><strong>【南海噴嚏王】</strong>各種創意活動訊息，歡迎來信刊登 </font></font><a href="mailto:nanhai@yam.com"><font size="2" color="#cccccc">nanhai@yam.com</font></a><font size="2" color="#cccccc"> （如遇稿擠將不另行通知）</font></p><p><font size="1">消息來源\David</font></p><p><font size="2">在這裡　水越與地球碰撞<br />摩擦燃燒　一年一次的降落</font></p><p><font size="2">將會看見，紅色星球碰撞綠色設計降落水越歷年手記展，軌跡相近的時尚、建築雜誌特賣，聚集登陸的布囉唆廣場布娃，暴走世代的機車物語與手工卡片│futari-issue.us│以及隕落的瑕疵商品特賣</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/856842.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/856842.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/856842.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Tue, 13 Dec 2005 00:21:26 +0800</pubDate>
</item>
<item>
	<title>♪臺北市街頭藝人審議會</title>
	<description><![CDATA[
			【南海噴嚏王】各種創意活動訊息，歡迎來信刊登 nanhai@yam.com （如遇稿擠將不另行通知）消息來源/米奇鰻「第二期臺北市街頭藝人審議會─全民公投」活動，歡迎踴躍參加文化局辦理「臺北市街頭藝人審議會─全民公投」活動，讓民眾也可以參與街頭藝人許可審議過程，本次參與甄選的街頭藝人有歌唱、音樂演出、繪畫、魔術氣球、行動雕像、拼布、壓克力畫以及創意燒玻璃等共計178組參加甄選，熱鬧精采可期，歡迎您來共襄盛舉。（一）時間：94年12月10日（星期六）上午10：00-12：00（選票發放時間：10：00-11：30，發完為止）（二）地點：中正紀念堂兩廳院迴廊（三）內容：街頭藝術大會師、票選心目中最喜歡與不喜歡的街頭藝人。（四）參與票選活動之民眾，前200名將可獲得精美小禮物乙份。
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2"><p><font size="2"><font color="#cccccc"><span style="font-size: 10pt; font-family: 新細明體"><span style="font-family: 新細明體"><font color="#cccccc"><strong>【南海噴嚏王】</strong>各種創意活動訊息，歡迎來信刊登 </font><a href="mailto:nanhai@yam.com"><font color="#cccccc">nanhai@yam.com</font></a><font color="#cccccc"> （如遇稿擠將不另行通知）</font></span></span></font></font></p></font><p><font size="2">消息來源/米奇鰻</font></p><p><font size="2">「第二期臺北市街頭藝人審議會─全民公投」活動，歡迎踴躍參加<br />文化局辦理「臺北市街頭藝人審議會─全民公投」活動，讓民眾也可以參與街頭藝人許可審議過程，本次參與甄選的街頭藝人有歌唱、音樂演出、繪畫、魔術氣球、行動雕像、拼布、壓克力畫以及創意燒玻璃等共計178組參加甄選，熱鬧精采可期，歡迎您來共襄盛舉。<br />（一）時間：94年12月10日（星期六）上午10：00-12：00（選票發放時間：10：00-11：30，發完為止）<br />（二）地點：中正紀念堂兩廳院迴廊<br />（三）內容：街頭藝術大會師、票選心目中最喜歡與不喜歡的街頭藝人。<br />（四）參與票選活動之民眾，前200名將可獲得精美小禮物乙份。</font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/843847.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/843847.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Fri, 09 Dec 2005 22:05:56 +0800</pubDate>
</item>
<item>
	<title> ♪「CAMPO生活藝術狂歡節」攤位招募</title>
	<description><![CDATA[
			【南海噴嚏王】各種創意活動訊息，歡迎來信刊登 nanhai@yam.com （如遇稿擠將不另行通知）今天下午有一位小姐打電話來問我創意市集和藝術狂歡節的事但是小姐妳的MAIL在大掃除中不見了所以我把網址貼在這希望妳有看到http://campolive.blogspot.com/
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2"><font color="#cccccc"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 新細明體"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New   Roman'"><font color="#cccccc"><strong>【南海噴嚏王】</strong>各種創意活動訊息，歡迎來信刊登 </font><a href="mailto:nanhai@yam.com"><font color="#cccccc">nanhai@yam.com</font></a><font color="#cccccc"> （如遇稿擠將不另行通知）</font></span></span></font></font></p><p><font size="+0"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 新細明體"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New   Roman'"><!--StartFragment --><font face="arial,helvetica,sans-serif" color="#000099">今天下午有一位小姐打電話來問我創意市集和藝術狂歡節的事</font></span></span></font></p><p><font size="+0"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 新細明體"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New   Roman'">但是小姐妳的MAIL在大掃除中不見了</span></span></font></p><p><font size="+0"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 新細明體"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New   Roman'">所以我把網址貼在這</span></span></font></p><p><font size="+0"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 新細明體"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New   Roman'">希望妳有看到</span></span></font></p><p><font size="+0"><font size="+0"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 新細明體"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New   Roman'"><font face="arial,helvetica,sans-serif" color="#000000"><a href="http://campolive.blogspot.com/">http://campolive.blogspot.com/</a></font></span></span></font></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/806663.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/806663.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/806663.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Fri, 02 Dec 2005 19:49:42 +0800</pubDate>
</item>
<item>
	<title>♪樂生療養院【音樂．生命．大樹下】1127行動新聞稿</title>
	<description><![CDATA[
			【南海噴嚏王】各種創意活動訊息，歡迎來信刊登 nanhai@yam.com （如遇稿擠將不另行通知）【音樂．生命．大樹下】1127行動將於本月27日午間十二時起第四度於新莊樂生療養院展開，活動將延續阿公阿嬤「守護樂生自己來」的精神，包括十多組創意小販參與的「自己來市場」，彌賽亞、蕭忠源、Digihai、夾子太硬啦、樂生那卡西五組音樂演出者，亦邀請阿公阿嬤們透過江冠明15年前的樂生院遊園會影像片段與您交流。當日同步發起「樂生那卡西」影音專輯製作費籌募行動，歡迎您支持阿公阿嬤唱出心聲，前二百名加入的朋友可獲樂生鴨舌板製竹青蜓！
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="MsoNormal" style="text-justify: inter-ideograph; margin: 0cm 0cm 0pt; text-indent: 24pt; text-align: justify"><font size="2"><span style="font-family: 新細明體"><font color="#cccccc"><strong>【南海噴嚏王】</strong>各種創意活動訊息，歡迎來信刊登 </font><a href="mailto:nanhai@yam.com"><font size="2" color="#cccccc">nanhai@yam.com</font></a><font size="2" color="#cccccc"> （如遇稿擠將不另行通知）</font></span></font></div><p align="center"><a href="http://www.flickr.com/photos/nanhai/66184766/" title="Photo Sharing"><img src="http://static.flickr.com/27/66184766_97a2a00fdf_m.jpg" alt="樂生那卡西" width="240" height="180" /></a></p><div class="MsoNormal" style="text-justify: inter-ideograph; margin: 0cm 0cm 0pt; text-indent: 24pt; text-align: justify"><font size="2"></font></div><div class="MsoNormal" style="text-justify: inter-ideograph; margin: 0cm 0cm 0pt; text-indent: 24pt; text-align: justify"><font size="2"></font></div><div class="MsoNormal" style="text-justify: inter-ideograph; margin: 0cm 0cm 0pt; text-indent: 24pt; text-align: justify"><font size="2"></font></div><div class="MsoNormal" style="text-justify: inter-ideograph; margin: 0cm 0cm 0pt; text-indent: 24pt; text-align: justify"><font size="2"><span style="font-family: 新細明體">【音<span style="color: red">樂．生</span>命．大樹下】</span><span><font face="Times New Roman">1127</font></span><span style="font-family: 新細明體">行動將於本月</span><span><font face="Times New Roman">27</font></span><span style="font-family: 新細明體">日午間十二時起第四度於新莊樂生療養院展開，活動將延續阿公阿嬤「守護樂生自己來」的精神，包括十多組創意小販參與的「自己來市場」，彌賽亞、蕭忠源、</span><span><font face="Times New Roman">Digihai</font></span><span style="font-family: 新細明體">、夾子太硬啦、樂生那卡西五組音樂演出者，亦邀請阿公阿嬤們透過江冠明</span><span><font face="Times New Roman">15</font></span><span style="font-family: 新細明體">年前的樂生院遊園會影像片段與您交流。當日同步發起「樂生那卡西」影音專輯製作費籌募行動，歡迎您支持阿公阿嬤唱出心聲，前二百名加入的朋友可獲樂生鴨舌板製竹青蜓！</span></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/772279.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/772279.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/772279.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Mon, 21 Nov 2005 22:18:46 +0800</pubDate>
</item>
<item>
	<title>看見聲音的模樣-撼動生命</title>
	<description><![CDATA[
			【後街南海】徵求與創意市集有關，或想在此格發表的文章，請將圖片、文字、筆名及聯絡方式E-MAIL至 nanhai@yam.com 被刊登者將獲得秘密禮物喔。文\仁許 &nbsp;撼動生命 It&#39;s All Gone Pete Tong藉由聽不到聲音的世界，聽到最撼動的音樂&hellip;法蘭奇是世界知名的頂尖DJ，極具天份的他深受各大PUB舞場和樂迷的擁戴，有著豪華的白色洋房、嬌豔如花的美妻；除了音樂，還有不可或缺的菸酒與毒品，要什麼有什麼的生活讓他宛若置身天堂般，卻也讓他日益墮落糜爛。有天，一陣陣莫名的噪音侵入了他的耳朵，漸漸地，當他把音量轉到最大時，居然什麼也聽不到了，他生命中最愛的音樂就此消失&hellip;全然的寂靜讓他一夕間墜入絕望的谷底，過往熱烈的掌聲變成唾棄的噓聲，樂迷、工作夥伴與愛妻紛紛離去，徹底崩潰的他只剩下毒癮與寂寞的煎熬；直到，他終於再次抓到音樂的撼動&hellip;■派對仙境，眾星如雲這部類紀錄片式的電影藉由一位失聰DJ法蘭奇?爾德的人生經歷，向觀眾展示了世界知名的電音聖地--伊比薩島Ibiza的舞蹈俱樂部生活。整部電影在西班牙的伊比薩島上拍攝了6個星期，當時那裏的溫度高達45度，凱耶穿梭於那裏的各大著名舞場俱樂部之間，片中那些圍繞在法蘭奇?爾德身邊的俱樂部群眾演員們都是真實的俱樂部成員。電影中有多處出現許多知名DJ的訪談特寫鏡頭，如：英國的流線胖小子-Fat Boy Slim、英倫電音教父級人物Pete Tong、DJ雜誌評選世界第一名DJ- Tiesto，還有著名黑人DJ -Carl Cox，與 Paul Van Dyke、Charlie Chester、Lol Hammond等眾多DJ都難得一起參與了本片的演出，為主角法蘭奇站台推薦，使得本片星光閃閃成為音樂界的盛事，也因此引起了國內外音樂圈和媒體的高度關注。除了有眾多DJ為本片背書之外，許多伊比薩島上的著名俱樂部如：Space、Pacha、DC10及Amnesia也都出現於本片，觀看本片就像是進行一場高級電音舞場的巡禮一般。■片名由來【撼動生命】英文片名--《It&rsquo;s All Gone Pete Tong》其實是一句有趣的諺語，原義應該是&mdash;It&rsquo;s All Gone Wrong（一切都完了、一切都毀了），取「wrong」和「Pete Tong」的諧音而來；Pete Tong是一位知名的英國DJ，這句俗諺較常在英國本地被使用，其他地區則偶有人沿用，而現在更被正式列入牛津英語辭典裡，成為公認的地方諺語呢！轉自http://tw.movie.yahoo.com/mstory.html?t=movie&amp;id=1310
		]]>
	</description>
	<content:encoded><![CDATA[
			<blockquote><p><font size="2"><font color="#cccccc"><strong>【後街南海】</strong>徵求與創意市集有關，或想在此格發表的文章，請將圖片、文字、筆名及聯絡方式E-MAIL至 </font><a href="mailto:nanhai@yam.com"><font size="2" color="#cccccc">nanhai@yam.com</font></a><font size="2" color="#cccccc"> 被刊登者將獲得秘密禮物喔。</font></font></p><p><font size="2">文\仁許</font></p><img src="http://static.flickr.com/30/62505838_062641d6cf_o.jpg" alt="112e34" width="108" height="160" /> <p>&nbsp;</p><p><font size="2">撼動生命 It&#39;s All Gone Pete Tong<br /><br />藉由聽不到聲音的世界，聽到最撼動的音樂&hellip;<br /><br />法蘭奇是世界知名的頂尖DJ，極具天份的他深受各大PUB舞場和樂迷的擁戴，有著豪華的白色洋房、嬌豔如花的美妻；除了音樂，還有不可或缺的菸酒與毒品，要什麼有什麼的生活讓他宛若置身天堂般，卻也讓他日益墮落糜爛。<br /><br />有天，一陣陣莫名的噪音侵入了他的耳朵，漸漸地，當他把音量轉到最大時，居然什麼也聽不到了，他生命中最愛的音樂就此消失&hellip;<br /><br />全然的寂靜讓他一夕間墜入絕望的谷底，過往熱烈的掌聲變成唾棄的噓聲，樂迷、工作夥伴與愛妻紛紛離去，徹底崩潰的他只剩下毒癮與寂寞的煎熬；直到，他終於再次抓到音樂的撼動&hellip;<br /><br />■派對仙境，眾星如雲<br /><br />這部類紀錄片式的電影藉由一位失聰DJ法蘭奇?爾德的人生經歷，向觀眾展示了世界知名的電音聖地--伊比薩島Ibiza的舞蹈俱樂部生活。整部電影在西班牙的伊比薩島上拍攝了6個星期，當時那裏的溫度高達45度，凱耶穿梭於那裏的各大著名舞場俱樂部之間，片中那些圍繞在法蘭奇?爾德身邊的俱樂部群眾演員們都是真實的俱樂部成員。<br /><br />電影中有多處出現許多知名DJ的訪談特寫鏡頭，如：英國的流線胖小子-Fat Boy <br />Slim、英倫電音教父級人物Pete Tong、DJ雜誌評選世界第一名DJ- <br />Tiesto，還有著名黑人DJ -Carl Cox，與 Paul Van Dyke、Charlie Chester、Lol <br />Hammond等眾多DJ都難得一起參與了本片的演出，為主角法蘭奇站台推薦，使得本片星光閃閃成為音樂界的盛事，也因此引起了國內外音樂圈和媒體的高度關注。<br /><br />除了有眾多DJ為本片背書之外，許多伊比薩島上的著名俱樂部如：Space、Pacha、DC10及Amnesia也都出現於本片，觀看本片就像是進行一場高級電音舞場的巡禮一般。<br /><br />■片名由來<br /><br />【撼動生命】英文片名--《It&rsquo;s All Gone Pete <br />Tong》其實是一句有趣的諺語，原義應該是&mdash;It&rsquo;s All Gone <br />Wrong（一切都完了、一切都毀了），取「wrong」和「Pete Tong」的諧音而來；Pete <br />Tong是一位知名的英國DJ，這句俗諺較常在英國本地被使用，其他地區則偶有人沿用，而現在更被正式列入牛津英語辭典裡，成為公認的地方諺語呢！<br /><br />轉自http://tw.movie.yahoo.com/mstory.html?t=movie&amp;id=1310<br /></font></p></blockquote>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/719290.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/719290.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/719290.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sat, 12 Nov 2005 22:38:11 +0800</pubDate>
</item>
<item>
	<title>逛市集@ London,UK(London Art Market)</title>
	<description><![CDATA[
			【跨國市集面相】地球上每一天都冒出了各種攤販，國外的創意市集長什麼樣呢？是方的還是圓的？讓我們來瞧瞧它的面貌。左圖\利物普街的攤販文\南海小果農 跨國連線報導圖\CC受訪者\CC 於英國SNG連線(其實是MSN連線)&nbsp;&nbsp;&nbsp; 小果農的高中同學CC在英國唸書之餘，也會收集一些資料，回國總會帶來許多戰利品，主要是在倫敦市區挖寶，通常在科芬園、肯頓城和利物普街等地區。
		]]>
	</description>
	<content:encoded><![CDATA[
			<blockquote><p><font size="2"><font color="#cccccc"><strong>【跨國市集面相】</strong>地球上每一天都冒出了各種攤販，國外的創意市集長什麼樣呢？是方的還是圓的？讓我們來瞧瞧它的面貌。</font></font></p><p><a href="http://www.flickr.com/photos/84667915@N00/50529558/" title="Photo Sharing"><img src="http://static.flickr.com/26/50529558_570d402b4d_m.jpg" alt="有很多人在畫畫" width="180" height="240" /></a><font size="1" color="#333333"><u>左圖\利物普街的攤販</u></font></p><p><font size="1">文\南海小果農 跨國連線報導</font></p><p><font size="1">圖\<font face="arial,helvetica,sans-serif">CC</font></font></p><p><font size="1">受訪者\<font face="arial,helvetica,sans-serif">CC 於英國SNG連線(其實是MSN連線)</font></font></p><p><font face="細明體"><font size="2">&nbsp;&nbsp;&nbsp; 小果農的高中同學CC在英國唸書之餘，也會收集一些資料，回國總會帶來許多戰利品，主要是在倫敦市區挖寶，通常在科芬園、肯頓城和利物普街等地區</font>。<br /><img src="http://blog.roodo.com/nanhai/6e6d027b.gif" alt="" width="780" height="12" /></font></p></blockquote>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/573040.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/573040.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/573040.html</guid>
	<category>南海推推／Billboard</category>
	<pubDate>Sun, 09 Oct 2005 01:18:21 +0800</pubDate>
</item>
</channel>
</rss>