<?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-近期展覽／Exhibitions</title>
<link>http://blog.roodo.com/nanhai/archives/cat_245051.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_245051.xml" rel="self" type="application/rss+xml" />
<item>
	<title>【近期展覽】移動人／Mobile Man (1218-0109)</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/10fb6a75.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10746737.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10746737.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10746737.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Fri, 18 Dec 2009 21:30:00 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】原生．剪紙花 (1120-1129)  </title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/2ece9a96.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10617465.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10617465.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10617465.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 08 Nov 2009 23:30:35 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】線．成 (1106-1114) 余婉伊 個展</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<table border="0" cellspacing="0" cellpadding="0" width="100%"><tbody><tr><td background="http://blog.roodo.com/nanhai/e3152284.jpg"><div align="center"><img src="http://blog.roodo.com/nanhai/e3152284.jpg" border="0" alt="" width="540" height="220" /></div></td></tr></tbody></table>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10427343.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10427343.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10427343.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 07 Nov 2009 15:00:00 +0800</pubDate>
</item>
<item>
	<title>【展覽舊現場】</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<iframe width="520" height="520" frameborder="0" scrolling="no" src="http://www.flickr.com/slideShow/index.gne?user_id=84667915@N00&amp;tags=exhibition"></iframe>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9406069.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9406069.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Mon, 05 Oct 2009 23:23:23 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】當我和你老去 (1010-1025) 牛俊強 個展</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/0d465de7.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/9960301.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9960301.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9960301.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Fri, 04 Sep 2009 19:14:33 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】解剖課：身體再衍藝 (0725-0816)</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/92c293ad.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/9392139.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9392139.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9392139.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 16 Aug 2009 18:00:00 +0800</pubDate>
</item>
<item>
	<title>【近期展覽】我想存在在你的存在的速度之中 | 追逐中的痕跡遊戲 | 時代破褲、口袋炸彈 | 解剖課：身體再衍藝</title>
	<description><![CDATA[
			&nbsp;06/03-07 &nbsp;我想存在在你的存在的速度之中&nbsp;(蔡昌霖個展)&nbsp;&nbsp;06/10-14 &nbsp;追逐中的痕跡遊戲（洪雅純 個展）&nbsp;&nbsp;&nbsp;06/20-07/05&nbsp;&nbsp;時代破褲、口袋炸彈（羅智信個展）&nbsp;&nbsp;06/22-07/11 &amp; 07/25-08/16&nbsp;解剖課：身體再衍藝（聯展）&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<table border="0" cellspacing="0" cellpadding="5" width="522" align="center"><tbody><tr><td width="49%" valign="top"><font size="1" color="#333333">&nbsp;06/03-07 <br />&nbsp;我想存在在你的存在的速度之中&nbsp;(蔡昌霖個展)</font><img src="http://blog.roodo.com/nanhai/8d3e0f28.jpg" border="0" alt="" vspace="5" width="244" height="120" align="left" /></td><td width="2%" valign="top">&nbsp;</td><td width="49%" valign="top"><font size="1"><font color="#333333">&nbsp;06/10-14 <br />&nbsp;追逐中的痕跡遊戲（洪雅純 個展）</font><font color="#808080">&nbsp;</font></font><img src="http://blog.roodo.com/nanhai/3011d5e5.jpg" border="0" alt="" vspace="5" width="244" height="120" align="left" /></td></tr></tbody></table><table border="0" cellspacing="0" cellpadding="5" width="522" align="center"><tbody><tr><td width="49%" valign="top"><hr /></td><td width="2%" valign="top">&nbsp;</td><td width="49%" valign="top"><hr /></td></tr></tbody></table><table border="0" cellspacing="0" cellpadding="5" width="522" align="center"><tbody><tr><td width="49%" valign="top"><font size="1" color="#333333">&nbsp;06/20-07/05&nbsp;<br />&nbsp;時代破褲、口袋炸彈（羅智信個展）</font><img src="http://blog.roodo.com/nanhai/e87ca132.jpg" border="0" alt="" vspace="5" width="244" height="120" align="left" /></td><td width="2%" valign="top">&nbsp;</td><td width="49%" valign="top"><font size="1"><font color="#333333">&nbsp;06/22-07/11 &amp; 07/25-08/16<br />&nbsp;解剖課：身體再衍藝（聯展）</font><font color="#808080">&nbsp;</font></font><img src="http://blog.roodo.com/nanhai/6ca7e917.jpg" border="0" alt="" vspace="5" width="244" height="120" align="left" /></td></tr></tbody></table>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8953369.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8953369.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8953369.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 15 Aug 2009 14:00:00 +0800</pubDate>
</item>
<item>
	<title>【近期展覽】時代破褲、口袋炸彈(0620-0705)羅智信個展</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/2892a1c6.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/9166083.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9166083.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9166083.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 20 Jun 2009 14:00:00 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】追逐中的痕跡遊戲  (0610-0614)  洪雅純 個展</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/0fb45237.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/9182163.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9182163.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9182163.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Wed, 10 Jun 2009 14:00:00 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】我想存在在你的存在的速度之中  (0603-0607)  蔡昌霖個展</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/3f0528a7.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/9108765.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9108765.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9108765.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Mon, 01 Jun 2009 14:00:00 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】交感缺乏  (0523-0530)  陳豪毅 林正偉 張永達 劉銘維</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/662c6654.jpg" border="0" alt="090523-展覽-交感缺乏" width="520" height="221" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8966649.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8966649.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8966649.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 30 May 2009 23:00:00 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】凝視父親：李開明個展 (0507-0517)</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><div style="text-align: center"><img src="http://blog.roodo.com/nanhai/f84d55b3.jpg" border="0" alt="1999~2008-我的家庭相簿-李開明個展" width="520" height="260" /></div></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8672969.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8672969.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8672969.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 17 May 2009 21:30:00 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】視軌2：速‧誰（01/14—02/21）</title>
	<description><![CDATA[
			視軌2：速‧誰Visual Tarck2：Velocity Like Who展期 Duration：2009/01/14─2009/02/21茶會 Reception：2009/02/21 15：30座談 Discussion：2009/02/21 16：00 陳貺怡、連德誠、黃海鳴參展藝術家 Artists：江薦新、李如環、李俊學、周楷棋、官語荷、陳柏村、楊彝安、蔡昌霖、鄭巧玟表演Performance：School&amp;PADA2009/02/21 19：00&nbsp;(展出紀錄照片) 
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/237f8a90.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/237f8a90_s.jpg" border="0" alt="DM2.jpg" hspace="5" align="left" /></a></div><p>視軌2：速‧誰Visual Tarck2：Velocity Like Who<br />展期 Duration：2009/01/14─2009/02/21<br />茶會 Reception：2009/02/21 15：30<br />座談 Discussion：2009/02/21 16：00 陳貺怡、連德誠、黃海鳴<br />參展藝術家 Artists：江薦新、李如環、李俊學、周楷棋、官語荷、陳柏村、楊彝安、蔡昌霖、鄭巧玟<br />表演Performance：School&amp;PADA2009/02/21 19：00&nbsp;<br /><br /><br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157615878685310/">(展出紀錄照片)</a> </p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/7928929.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/7928929.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 21 Feb 2009 03:05:59 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】建築ㄍㄨㄥ ㄕˋ—南海藝廊（12/06—12/31）</title>
	<description><![CDATA[
			蔡坤霖個展展期：12/06 (六)開幕：12/06 (六)15：30網址：http://db-db.com/loves/traveller/hearing_structure.html(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/f775ded1.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/f775ded1_s.jpg" border="0" alt="建築公事.jpg" hspace="5" width="160" height="119" align="left" /></a><font size="2">蔡坤霖個展<br />展期：12/06 (六)<br />開幕：12/06 (六)15：30<br />網址：<br /></font><a href="http://db-db.com/loves/traveller/hearing_structure.html"><font size="2">http://db-db.com/loves/traveller/hearing_structure.html</font></a><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157617213149282/">(展出紀錄照片)</a></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/7722525.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/7722525.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/7722525.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Wed, 31 Dec 2008 17:45:33 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】觸電‧臨詩--電子詩景裝置展（11/01—11/23）</title>
	<description><![CDATA[
			參展：夏夏、陳長志、柯志豪、黃榮法、周書毅開幕表演暨座談：11/01 (日)14：00座談：詩的解放陣線 主持：黃海鳴演出：看得見的城市人&mdash;充滿空氣編舞：周書毅&nbsp; 演出：楊乃璇、廖苡晴、林佑如、田孝慈、李尹櫻、郭秋妙(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/4c0e39f6.jpg" target="_blank"></a></div><div class="pict"><div class="pict"><a href="http://blog.roodo.com/nanhai/4c0e39f6.jpg" target="_blank"></a></div><div class="pict"><a href="http://blog.roodo.com/nanhai/f941815d.jpg" target="_blank"><img src="http://blog.roodo.com/nanhai/0ef399ee.jpg" border="0" alt="觸電。臨詩" hspace="5" width="590" height="155" align="left" /></a><br /><br /><br /><br /><br /><br /><br /><br /><br /></div><font size="2">參展：夏夏、陳長志、柯志豪、黃榮法、周書毅<br />開幕表演暨座談：11/01 (日)14：00<br />座談：詩的解放陣線 主持：黃海鳴<br />演出：看得見的城市人&mdash;充滿空氣<br />編舞：周書毅&nbsp; 演出：楊乃璇、廖苡晴、林佑如、田孝慈、李尹櫻、郭秋妙<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157615178592100/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/7479319.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/7479319.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/7479319.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 23 Nov 2008 17:58:54 +0800</pubDate>
</item>
<item>
	<title>【當期展覽】一次預言（10/18—10/26）</title>
	<description><![CDATA[
			參展：G.I.JOE團隊、土鱉鏗、林浩君、大八、張建元張修齊、蘇育均、Bbrother開幕酒會：10/19 (日)15：00閉幕演出：10/26 (日)19：00《低級恐佈劇場之人間屍格》黑衣良穿(迷樣般的男人)《終極相聲》Gery(U.TA樂團)(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/c67d6dd2.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/c67d6dd2_s.jpg" border="0" alt="明信片A.jpg" hspace="5" align="left" /></a></div>參展：G.I.JOE團隊、土鱉鏗、林浩君、大八、張建元<br />張修齊、蘇育均、Bbrother<br />開幕酒會：10/19 (日)15：00<br />閉幕演出：10/26 (日)19：00<br />《低級恐佈劇場之人間屍格》黑衣良穿(迷樣般的男人)<br />《終極相聲》Gery(U.TA樂團)<br /><br /><br /><br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157615798766839/">(展出紀錄照片)</a>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/7425049.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/7425049.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/7425049.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 18 Oct 2008 20:40:05 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】心智的隱區---輕靈介質的沉思（08/02—08/22）</title>
	<description><![CDATA[
			策展：劉高興參展：卲慶旺、黃純真、劉又誠、蔡影澂、施彥君開幕茶會：08/10（日）14：30行為詩演出：邵慶旺 08/10(日) 14：30～15：30座談會：08/10（日）15：30座談會來賓：黃海鳴、黃梁、劉高興(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			策展：劉高興<br />參展：卲慶旺、黃純真、劉又誠、蔡影澂、施彥君<br />開幕茶會：08/10（日）14：30<br />行為詩演出：邵慶旺 08/10(日) 14：30～15：30<br />座談會：08/10（日）15：30<br />座談會來賓：黃海鳴、黃梁、劉高興<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157616446451241/">(展出紀錄照片)</a>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/6632301.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/6632301.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/6632301.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Thu, 31 Jul 2008 11:09:02 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】交．直流（07/05—07/18）</title>
	<description><![CDATA[
			展期： 07.05-07.18開幕茶會：07.05&nbsp; 12：00座談會：07.05&nbsp; 14：00策展人：蔡美如參展人：劉博源、李淑慧、王瑞良、黃存仁、呂景輝、吳靜怡、劉怡安、黃姿斐、楊欣怡、蔡美如、陳潔如、楊可瑜、張瓊文(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2"><div class="pict"><a href="http://blog.roodo.com/nanhai/615e0cb7.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/615e0cb7_s.jpg" border="0" alt="交直流-海報2k.jpg" hspace="5" align="left" /></a></div>展期： 07.05-07.18<br />開幕茶會：07.05&nbsp; 12：00<br />座談會：07.05&nbsp; 14：00<br />策展人：蔡美如<br />參展人：劉博源、李淑慧、王瑞良、黃存仁、呂景輝、吳靜怡、劉怡安、黃姿斐、楊欣怡、蔡美如、陳潔如、楊可瑜、張瓊文<br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610606085673/">(展出紀錄照片)</a></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/6297341.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/6297341.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/6297341.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Fri, 18 Jul 2008 16:17:17 +0800</pubDate>
</item>
<item>
	<title>【近期展覽】秒殺（06/14—06/28）</title>
	<description><![CDATA[
			參展藝術家：林正偉、丘智華、陳瑋齡、陳依純、羅禾淋策展人：陳依純、羅禾淋展出日期：2008.06.14(Sat)&mdash;2008.06.28(Sat)開幕日期：2008.06.14(Sat) 15：00開幕表演：2008.06.14(Sat) 14：30 王連晟、鄧倢伃開幕座談：2008.06.14(Sat) 15：30黃建宏、陳永賢、陳泰松&nbsp;&nbsp; (展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/5da2cd69.jpg" target="_blank"></a><font size="2"><div class="pict"><a href="http://blog.roodo.com/nanhai/698cbb84.jpg" target="_blank"><img src="http://blog.roodo.com/nanhai/698cbb84_s.jpg" border="0" alt="秒殺網路DM修正.jpg" hspace="10" width="160" height="114" align="left" /></a></div>參展藝術家：林正偉、丘智華、陳瑋齡、陳依純、羅禾淋</font><br /><font size="2">策展人：陳依純、羅禾淋<br />展出日期：2008.06.14(Sat)&mdash;2008.06.28(Sat)<br />開幕日期：2008.06.14(Sat) 15：00<br />開幕表演：2008.06.14(Sat) 14：30 王連晟、鄧倢伃<br />開幕座談：2008.06.14(Sat) 15：30黃建宏、陳永賢、陳泰松<br /><br />&nbsp;&nbsp; <a href="http://www.flickr.com/photos/nanhai/sets/72157610674013474/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/6033533.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/6033533.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/6033533.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 28 Jun 2008 15:41:05 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】MsMs（05/25—06/07）</title>
	<description><![CDATA[
			參展人：王惠瑩、杜禕苓展出日期：2008.05.25(Sun)&mdash;2008.06.07(Sat)開幕日期：2008.05.25(Sun) 17：00座談會：2008.06.01(Sun) 14：00～15：30與談人：黃海鳴 國立台北教育大學文化產業學系系主任與談人：葉郁田 銘傳大學數位設計學系專任助理教授&nbsp;&nbsp; (展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2"><div class="pict"><a href="http://blog.roodo.com/nanhai/c527d86b.jpg" target="_blank"></a></div><div class="pict"><img src="http://blog.roodo.com/nanhai/4b316889_s.jpg" border="0" alt="MsMs.jpg" hspace="10" vspace="10" width="160" height="97" align="left" /></div>參展人：王惠瑩、杜禕苓<br />展出日期：2008.05.25(Sun)&mdash;2008.06.07(Sat)<br />開幕日期：2008.05.25(Sun) 17：00<br />座談會：2008.06.01(Sun) 14：00～15：30<br />與談人：黃海鳴 國立台北教育大學文化產業學系系主任<br /><font color="#ffffff">與談人：</font>葉郁田 銘傳大學數位設計學系專任助理教授<br /><br />&nbsp;&nbsp; <a href="http://www.flickr.com/photos/nanhai/sets/72157615558861900/">(展出紀錄照片)</a></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/6033453.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/6033453.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/6033453.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 01 Jun 2008 01:31:03 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】No Error Lost（05/03—05/17）</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;&nbsp;&nbsp; &nbsp;NO &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ERROR &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; LOST策展人：陳豪毅、周家輝參展藝術家：邱元男&nbsp; 余政達&nbsp; 羅喬綾日期：2008.05.03(Sat)&mdash;2008.05.17(Sat)開幕：2008.05.10(Sun) 15：00(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/8418ffa6.jpg" target="_blank"><img src="http://blog.roodo.com/nanhai/8418ffa6_s.jpg" border="0" alt="海報.jpg" hspace="10" width="160" height="75" align="left" /></a>&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;&nbsp;&nbsp; &nbsp;<font size="2">N<font color="#ff0000">O</font> <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ERR<font color="#ff0000">O</font>R <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; L<font color="#ff0000">O</font>ST<br /><br /><br />策展人：陳豪毅、周家輝<br />參展藝術家：邱元男&nbsp; 余政達&nbsp; 羅喬綾<br />日期：2008.05.03(Sat)&mdash;2008.05.17(Sat)<br />開幕：2008.05.10(Sun) 15：00<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610607230203/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/5966647.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/5966647.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/5966647.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 03 May 2008 07:00:00 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】室內詭計（04/13—04/26）</title>
	<description><![CDATA[
			室內詭計展覽者：姚仲涵、施懿珊、張敏智日期：2008.04.13(Sun)&mdash;2008.04.26(Sat)開幕：2008.04.13(Sun) 17：00(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://trick3r-2008.blogspot.com" target="_blank" title="室內詭計"><img src="http://blog.roodo.com/nanhai/71d8e299_s.jpg" border="0" alt="final-DM.jpg" hspace="10" width="160" height="160" align="left" /></a><font size="2">室內詭計<br />展覽者：姚仲涵、施懿珊、張敏智<br />日期：2008.04.13(Sun)&mdash;2008.04.26(Sat)<br />開幕：2008.04.13(Sun) 17：00<br /><br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610607563537/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/5776929.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/5776929.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/5776929.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 26 Apr 2008 15:57:25 +0800</pubDate>
</item>
<item>
	<title>2008上半年度【南海展覽】</title>
	<description><![CDATA[
			南海展覽─2008上半年檔期列表2008.04～2008.08
		]]>
	</description>
	<content:encoded><![CDATA[
			<img src="http://farm3.static.flickr.com/2408/2179957787_1c644a12c8_o.jpg" border="0" alt="南海藝廊" hspace="10" width="160" height="107" align="left" />南海展覽─2008上半年檔期列表<br /><font size="2">2008.04～2008.08</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/5749973.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/5749973.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/5749973.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Wed, 09 Apr 2008 09:01:45 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】女味－身體裝扮個展（01/23—02/03、02/13—02/23 ）</title>
	<description><![CDATA[
			女味－身體裝扮個展展覽者：殷亞蘭日期：2008.01.23(Wed)&mdash;2008.02.03(Sun)日期：2008.02.13(Wed)&mdash;2008.02.23(Sat)開幕演出流程：2008.01.26(Sat) 15:00&mdash;17:30 14:00 貴賓入場 15:00主持人活動簡介 15:10時尚遛狗秀 15:30女神繞境秀 15:40展出者自述及教授來賓致詞 15:50&mdash;16:30雀斑樂團演出 觀眾可上台互動 16:30&mdash;17:30享用茶點，自由參觀留言&nbsp;(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/8ca74cf2.jpg" target="_blank"><img src="http://blog.roodo.com/nanhai/8ca74cf2_s.jpg" border="0" alt="女味－身體裝扮個展.jpg" hspace="10" width="160" height="93" align="left" /></a><font size="2">女味－身體裝扮個展<br />展覽者：殷亞蘭<br />日期：2008.01.23(Wed)&mdash;2008.02.03(Sun)<br /><font color="#ffffff">日期：</font>2008.02.13(Wed)&mdash;2008.02.23(Sat)<br /><br /><br /><br />開幕演出流程：2008.01.26(Sat) 15:00&mdash;17:30 <br />14:00 貴賓入場 <br />15:00主持人活動簡介 <br />15:10時尚遛狗秀 <br />15:30女神繞境秀 <br />15:40展出者自述及教授來賓致詞 <br />15:50&mdash;16:30雀斑樂團演出 觀眾可上台互動 <br />16:30&mdash;17:30享用茶點，自由參觀留言<br />&nbsp;<br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610607730137/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4694807.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4694807.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4694807.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 23 Feb 2008 17:37:39 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】隱喻的真實（01/09—01/18 ）</title>
	<description><![CDATA[
			隱喻的真實展覽者： 劉怡安日期：2008.01.09(Wed)&mdash;2008.01.18(Fri)(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/22bea8c9.jpg" target="_blank"><img src="http://blog.roodo.com/nanhai/22bea8c9_s.jpg" border="0" alt="IMG_1320.jpg" hspace="10" width="160" height="213" align="left" /></a><font size="2">隱喻的真實<br />展覽者： 劉怡安<br />日期：2008.01.09(Wed)&mdash;2008.01.18(Fri)<br /><br /><br /><br /><br /><br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610609619323/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4694669.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4694669.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4694669.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Fri, 18 Jan 2008 17:21:56 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】牧羊人與小鴿子（12/15—01/05 ）</title>
	<description><![CDATA[
			牧羊人與小鴿子策展人： 黃海鳴藝術家： 陳映潔、林佳鴻、Tanya、畢森德、林琬千+演出團隊執行企劃： 翁莉雅日期：2007.12.15(Sat)&mdash;2008.01.05(Sat)行動藝術：12/15（六）19：30 泛音即興行動藝術：12/21（五）19：30 即興音樂&mdash;西塔琴行動藝術：12/22（六）19：30 聲響即興行動藝術：12/29（六）19：30 鋼琴即興行動藝術：01/06（日）18：00 即興音樂&mdash;西塔琴(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/bd5fb5e8.jpg" target="_blank"><font size="2"><img src="http://blog.roodo.com/nanhai/bd5fb5e8_s.jpg" border="0" alt="Poster.jpg" hspace="10" width="160" height="231" align="left" /></font></a><font size="2">牧羊人與小鴿子<br />策展人： 黃海鳴<br />藝術家： 陳映潔、林佳鴻、Tanya、畢森德、林琬千+演出團隊<br />執行企劃： 翁莉雅<br />日期：2007.12.15(Sat)&mdash;2008.01.05(Sat)<br />行動藝術：12/15（六）19：30 泛音即興<br /><font color="#ffffff">行動藝術：</font>12/21（五）19：30 即興音樂&mdash;西塔琴<br /><font color="#ffffff">行動藝術：</font>12/22（六）19：30 聲響即興<br /><font color="#ffffff">行動藝術：</font>12/29（六）19：30 鋼琴即興<br /><font color="#ffffff">行動藝術：</font>01/06（日）18：00 即興音樂&mdash;西塔琴<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610676799384/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4588129.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4588129.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4588129.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 05 Jan 2008 18:55:50 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】旋律   黃士甄   圖騰設計展（12/08—12/30 ）</title>
	<description><![CDATA[
			旋律&nbsp;&nbsp; 黃士甄&nbsp;&nbsp; 圖騰設計展日期：2007.12.08(Sat)&mdash;12.30(Sun)(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><div class="pict"><a href="http://blog.roodo.com/nanhai/dfbba4f5.jpg" target="_blank"></a></div><font size="2"><div class="pict"><a href="http://blog.roodo.com/nanhai/77f98b15.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/77f98b15_s.jpg" border="0" alt="旋律   黃士甄   圖騰設計展.jpg" hspace="5" width="160" height="129" align="left" /></a></div>旋律&nbsp;&nbsp; 黃士甄&nbsp;&nbsp; 圖騰設計展<br />日期：2007.12.08(Sat)&mdash;12.30(Sun)</font><font size="1"><br /></font><br /><br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610711036218/">(展出紀錄照片)<br /></a><br /><br /><br /><br /><a href="http://blog.roodo.com/nanhai/dfbba4f5.jpg" target="_blank"></a></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4588271.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4588271.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4588271.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 30 Dec 2007 19:50:20 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】看的倫理（11/24—12/09 ）</title>
	<description><![CDATA[
			看的倫理日期：2007.11.24(Sat)&mdash;12.09(Sat)策展人：王浚人參展者：陳伯義、張雍、廖家賢、林信宏、王怡人座談：從蘇珊宋妲論攝影談起座談：黃建亮(亮相館影像總監)座談：12/09〈日〉16：00&mdash;18：00(展出紀錄照片)&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/2a274a37.jpg" target="_blank"><font size="2"><img src="http://blog.roodo.com/nanhai/2a274a37_s.jpg" border="0" alt="看的倫理海報2.jpg" hspace="10" width="160" height="205" align="left" /></font></a><font size="2">看的倫理<br />日期：2007.11.24(Sat)&mdash;12.09(Sat)<br />策展人：王浚人<br />參展者：陳伯義、張雍、廖家賢、林信宏、王怡人<br />座談：從蘇珊宋妲論攝影談起<br /><font color="#ffffff">座談：</font>黃建亮(亮相館影像總監)<br /><font color="#ffffff">座談：</font>12/09〈日〉16：00&mdash;18：00<br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610644943069/">(展出紀錄照片)<br /></a><br /><br /><br /><br /><table border="0" width="760"><tbody><tr><td>&nbsp;</td></tr></tbody></table></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4475975.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4475975.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4475975.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 24 Nov 2007 02:13:29 +0800</pubDate>
</item>
<item>
	<title>【 南海展覽】2007 第八屆台北詩歌節 「詩漫同盟」（11/03—11/17 ）</title>
	<description><![CDATA[
			他們在畫裡說了一些故事，在鑿刻繪寫的時光裡，有一些無法言宣的東西，源自於詩人的眼睛。日期：2007.11.03(Sat)&mdash;11.17(Sat)展出人：智海、吳佳穎開幕座談：11/3〈六〉15：00&nbsp;&nbsp; 主持：顏忠賢(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/296e9e2e.jpg" target="_blank" title="「詩漫同盟」"></a><div class="pict"><div class="pict"><a href="http://blog.roodo.com/nanhai/e9539ff3.jpg" target="_blank"><img src="http://blog.roodo.com/nanhai/e9539ff3_s.jpg" border="0" alt="智海.jpg" hspace="5" width="160" height="229" align="left" /></a></div></div><font size="2"><font size="4"><p><font size="2"><br />他們在畫裡說了一些故事，在鑿刻繪寫的時光裡，<br />有一些無法言宣的東西，源自於詩人的眼睛。<br /><br /></font></p></font>日期：2007.11.03(Sat)&mdash;11.17(Sat)<br />展出人：智海、吳佳穎<br />開幕座談：11/3〈六〉15：00&nbsp;&nbsp; 主持：顏忠賢<br /><br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610646819539/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4329473.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4329473.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4329473.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 03 Nov 2007 16:21:57 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】一萼‧一瓣‧一骨‧一吠影（10/12—10/27 ）</title>
	<description><![CDATA[
			一萼‧一瓣‧一骨‧一吠影鄧堯鴻個展 2001～2007展出日期：2007.10.12(Fri)&mdash;10.27(Sat)展出人：鄧堯鴻(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/ff35bf0a.jpg" target="_blank"><img style="width: 159px; height: 120px" class="pict" src="http://blog.roodo.com/nanhai/ff35bf0a_s.jpg" border="0" alt="一萼‧一瓣‧一骨‧一吠影   .JPG" title="一萼‧一瓣‧一骨‧一吠影   .JPG" hspace="10" width="159" height="120" align="left" /></a>一萼‧一瓣‧一骨‧一吠影<br /><font size="2">鄧堯鴻個展 2001～2007<br />展出日期：2007.10.12(Fri)&mdash;10.27(Sat)<br />展出人：鄧堯鴻<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157604186808659/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4285809.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4285809.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4285809.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Fri, 12 Oct 2007 17:26:26 +0800</pubDate>
</item>
<item>
	<title>下半年度【 南海展覽】</title>
	<description><![CDATA[
			南海展覽─檔次52～572007.10～2008.02
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="3"><img style="width: 160px" src="http://farm2.static.flickr.com/1200/1205574499_d236871d0e_o.jpg" alt="" hspace="10" width="160" height="120" align="left" />南海展覽─檔次52～57<br /></font><font size="2">2007.10～2008.02</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4285585.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4285585.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4285585.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 30 Sep 2007 16:22:17 +0800</pubDate>
</item>
<item>
	<title>【 南海展覽】故事之後（09/22—10/06 ）</title>
	<description><![CDATA[
			故事之後展出日期：2007.9.22 (Sat)&mdash;10.06(Sat)策展人：簡麗庭、黃軍豪、洪偉格(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/2f041f3b.jpg" target="_blank"><img style="width: 160px; height: 87px" class="pict" src="http://blog.roodo.com/nanhai/2f041f3b_s.jpg" border="0" alt="故事之後.jpg" title="故事之後.jpg" hspace="10" width="160" height="87" align="left" /></a><font size="2">故事之後<br /></font><font size="2">展出日期：2007.9.22 (Sat)&mdash;10.06(Sat)<br />策展人：簡麗庭、黃軍豪、洪偉格<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157604605619293/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4170245.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4170245.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4170245.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Thu, 20 Sep 2007 21:34:08 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】Warped message（09/01—09/15 ）</title>
	<description><![CDATA[
			Warped message展出日期: 2007. 9.01 (thu)&mdash;9.15 (sun)策展人：邱承宏展出人：李玠樺、莊哲瑋、劉千瑋、羅仕東等人(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/3cad147f.bmp" target="_blank"><img style="width: 160px; height: 112px" class="pict" src="http://blog.roodo.com/nanhai/3cad147f_s.bmp" border="0" alt="WM 海報ss.bmp" title="WM 海報ss.bmp" hspace="10" width="160" height="112" align="left" /></a><font size="4">Warped message<br /></font><font size="2">展出日期: 2007. 9.01 (thu)&mdash;9.15 (sun)<br />策展人：邱承宏<br />展出人：李玠樺、莊哲瑋、劉千瑋、羅仕東等人<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610714789668/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3941841.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3941841.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3941841.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Fri, 31 Aug 2007 19:13:52 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】日常空間 daily space（08/16—08/26 ）</title>
	<description><![CDATA[
			日常空間 daily space展出日期: 2007. 8.16 (thu)&mdash;8.26 (sun)展出人: 鄭文絜開幕: 2007.8.19 (sun) at 4:30pm(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/b40b50a3.jpg" target="_blank"><img style="width: 160px; height: 117px" class="pict" src="http://blog.roodo.com/nanhai/b40b50a3_s.jpg" border="0" alt="L-7 copy-網宣.jpg" title="L-7 copy-網宣.jpg" hspace="10" width="160" height="117" align="left" /></a><font size="2"><font size="4">日常空間 daily space</font><br />展出日期: 2007. 8.16 (thu)&mdash;8.26 (sun)<br />展出人: 鄭文絜<br />開幕: 2007.8.19 (sun) at 4:30pm<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610648345957/">(展出紀錄照片)</a></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3896545.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3896545.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3896545.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 26 Aug 2007 18:39:46 +0800</pubDate>
</item>
<item>
	<title>【南海展覽】現代詩物件展</title>
	<description><![CDATA[
			我的佈告欄&nbsp; 7.8-7.26&nbsp; 7/8 14:00開幕 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;工作坊─沒有字的佈告欄&nbsp;&nbsp;2007.7.14(六)&nbsp;&nbsp;14:00-15:30、16:00-17:30&nbsp;&nbsp;10人一班 free帶引講師：瞇、阿健&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 預約報名：chainyouplus@yahoo.com.tw&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<table border="0" width="490" align="center"><tbody><tr><td valign="top"><a href="http://blog.roodo.com/nanhai/archives/cat_245051.html" target="_blank"><img style="width: 59px; height: 84px" class="pict" src="http://blog.roodo.com/nanhai/4dbde572_s.jpg" border="0" alt="玩詩ㄧ樓展.JPG" title="玩詩ㄧ樓展.JPG" hspace="5" width="59" height="84" align="right" /></a></td></tr><tr><td><div class="pict"><div class="pict"><div class="pict"><a href="http://blog.roodo.com/nanhai/481535cd.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/481535cd_s.jpg" border="0" alt="本週3.jpg" title="本週3.jpg" hspace="5" width="96" height="71" align="left" /></a></div></div><font size="2"><strong>我的佈告欄</strong></font>&nbsp; <strong><font size="2">7.8-7.26</font></strong><span style="font-family: 'Arial Black'; color: black; font-size: 20pt"><font size="3"><font size="2">&nbsp;</font><strong> </strong><span style="font-family: 'Times New Roman'; color: black; font-size: 10pt">7/8 14:00開幕 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></font></span></div></td></tr></tbody></table><table border="0" width="490" align="center"><tbody><tr><td>&nbsp;<span style="font-family: 新細明體; color: black; font-size: 10pt"><span style="letter-spacing: -0.2pt"><span style="font-family: 新細明體; color: black; font-size: 10pt"><span><font color="#999999"><strong>工作坊─</strong></font><font color="#999999"><strong>沒有字的佈告欄&nbsp;&nbsp;</strong><span style="font-family: 新細明體; color: black; font-size: 10pt"><span style="letter-spacing: -0.2pt"><span style="font-family: 新細明體; color: black; font-size: 10pt"><span style="font-family: 新細明體; letter-spacing: 0.3pt; color: black; font-size: 10pt"><font color="#999999">2007.7.14(</font></span><span style="font-family: 新細明體; letter-spacing: 0.3pt; color: black; font-size: 10pt"><font color="#999999">六</font><span><font color="#999999">)&nbsp;&nbsp;</font><span style="font-family: 新細明體; color: black; font-size: 10pt"><span style="letter-spacing: -0.2pt"><span style="font-family: 新細明體; color: black; font-size: 10pt"><span style="font-family: 新細明體; letter-spacing: 0.3pt; color: black; font-size: 10pt"><font color="#999999">14:00-<span>15:30、16:00</span>-</font><span><font color="#999999">17:30</font>&nbsp;&nbsp;</span></span></span></span></span><font color="#999999">10</font></span><font color="#999999">人一班 <strong>free</strong></font></span></span></span></span></font></span></span></span></span></td></tr></tbody></table><table border="0" width="490" align="center"><tbody><tr><td><div align="center"><span style="font-family: 新細明體; color: black; font-size: 10pt"><span style="letter-spacing: -0.2pt"><span style="font-family: 新細明體; color: black; font-size: 10pt"><span style="font-family: 新細明體; letter-spacing: 0.3pt; color: black; font-size: 10pt"><span style="font-family: 新細明體; letter-spacing: 0.4pt; color: black; font-size: 10pt"><font color="#999999">帶引講師：</font><font color="#999999">瞇、阿健</font><span>&nbsp;&nbsp;</span></span></span></span></span></span></div></td></tr></tbody></table><table border="0" width="490" align="center"><tbody><tr><td><span style="font-family: 新細明體; letter-spacing: 0.4pt; color: black; font-size: 10pt"><font color="#999999">&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 預約報名：</font><span><a href="mailto:chainyouplus@yahoo.com.tw"><font color="#999999"><font color="#999999">chainyouplus</font>@yahoo.com.tw</font></a></span></span></td></tr></tbody></table><table border="0" width="490" align="center"><tbody><tr><td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td></tr></tbody></table><br /><div align="center"><a href="http://www.flickr.com/photos/nanhai/sets/72157610648369755/">(展出紀錄照片)</a></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3566897.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3566897.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3566897.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 30 Jun 2007 18:11:47 +0800</pubDate>
</item>
<item>
	<title>本期展覽--南海肉兵器</title>
	<description><![CDATA[
			&nbsp;南海肉兵器&nbsp;(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center">&nbsp;</p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><em><span style="font-family: 新細明體; color: #333333">南海肉兵器</span></em></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center">&nbsp;</p><em><span style="font-family: 新細明體; color: #333333"><div style="text-align: center"><img style="width: 192px; height: 123px" src="http://blog.roodo.com/nanhai/bbd18403.bmp" alt="" width="192" height="123" /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610752954282/">(展出紀錄照片)</a></div></span></em>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3387693.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3387693.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3387693.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 09 Jun 2007 16:10:54 +0800</pubDate>
</item>
<item>
	<title>南海展覽- -這一代設計展</title>
	<description><![CDATA[
			國立台北藝術大學&nbsp; 劇場設計系--這一代設計展&nbsp;展期：2007/5/19-5/27&quot;不只是新的，我們要的是當下！&quot;---在戲劇中呈現的片刻生命光景，與劇場演出朝生暮死的當下性。&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font color="#333333"><strong>國立台北藝術大學&nbsp; 劇場設計系--這一代設計展&nbsp;</strong></font></p><p><font color="#333333"><font size="2">展期：</font><strong>2007/5/19-5/27</strong></font></p><table border="0" cellspacing="5"><tbody><tr><td><p><font size="2" color="#333333"><font color="#999999">&quot;不只是新的，我們要的是當下！&quot;<br />---在戲劇中呈現的片刻生命光景，與劇場演出朝生暮死的當下性。</font></font></p></td><td><img style="width: 100px; height: 173px" src="http://blog.roodo.com/nanhai/a008e3dd.jpg" alt="" width="100" height="173" />&nbsp;</td></tr></tbody></table><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610685108729/">(展出紀錄照片)</a>&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3117727.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3117727.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3117727.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Wed, 25 Apr 2007 19:54:45 +0800</pubDate>
</item>
<item>
	<title>南海展演- -Tranfrmed</title>
	<description><![CDATA[
			時間：5/6~5/13展出地點：南海藝廊開幕茶會5/6 (SUN) p.m.7：00(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="2" color="#333333">時間：</font><font color="#333333"><strong>5/6~5/13<br /></strong><font size="2">展出地點：</font><strong>南海藝廊</strong><br /><font size="2">開幕茶會</font><strong>5/6 (SUN) p.m.7：00</strong></font></p><p align="center"><img style="width: 300px; height: 171px" src="http://blog.roodo.com/nanhai/5fda31e6.jpg" alt="" width="300" height="171" /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610753646696/">(展出紀錄照片)</a></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3117401.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3117401.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3117401.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Tue, 24 Apr 2007 16:58:38 +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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(展出紀錄照片)&nbsp;&nbsp;FUNction &ndash;&nbsp;剪‧玩藝&nbsp;workshop exhibition 2007&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;&nbsp;&nbsp;&nbsp;&nbsp; 
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="3"><span style="font-family: 新細明體; color: black; font-size: 10pt"><p style="margin: 0cm 0cm 0pt 36pt" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt 36pt" class="MsoNormal"><font size="3"><font color="#999999"><font face="標楷體"><span style="font-family: 新細明體; color: black">前</span><span style="font-family: Arial; color: black">&nbsp;</span><span style="font-family: 新細明體; color: black">刀</span><span style="font-family: Arial; color: black">&nbsp;</span><span style="font-family: 新細明體; color: black">糸</span><span style="font-family: Arial; color: black">&nbsp;</span><span style="font-family: 新細明體; color: black">氏</span><span style="font-family: Arial; color: black">&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<div align="center">&nbsp;<a href="http://www.flickr.com/photos/nanhai/sets/72157610753835504/"><font face="標楷體">(展出紀錄照片)</font></a></div></span></font></font></font></p><br /><p style="margin: 0cm 0cm 0pt 36pt" class="MsoNormal"><font face="標楷體"><font color="#999999"><span style="font-family: Arial; color: black; font-size: 12pt"><span><span style="font-family: 新細明體; color: black">&nbsp;</span>&nbsp;</span></span><strong><span style="font-family: Arial; color: #292929; font-size: 12pt">FUN</span></strong><span style="font-family: Arial; color: #292929; font-size: 12pt">ction &ndash;</span></font><span style="font-family: Arial; color: black; font-size: 12pt">&nbsp;</span><span style="font-family: 新細明體; color: #993300; font-size: 12pt">剪</span><span style="color: #993300; font-size: 12pt">‧</span><span style="font-family: 新細明體; color: #993300; font-size: 12pt">玩藝</span><span style="font-family: Arial; color: black; font-size: 12pt">&nbsp;</span><span style="font-family: Arial; color: #292929; font-size: 12pt">workshop exhibition 2007</span><span style="font-family: Arial; color: black; font-size: 10pt"><span>&nbsp; </span></span></font></p><span style="font-family: Arial; color: black; font-size: 10pt"><span><font face="標楷體"><table border="0" cellspacing="5" cellpadding="1" style="width: 100%"><tbody><tr><td><span style="font-family: Arial; color: black; font-size: 10pt"><span><font face="標楷體"><img style="width: 258px; height: 169px" src="http://blog.roodo.com/nanhai/3a56b607.gif" border="0" alt="" width="258" height="169" align="baseline" /></font></span></span></td><td><font face="標楷體" size="3"><p>隨時代快速變遷，剪紙的美、剪紙的體驗、剪紙的意義，如同紙易瓦解，漸在台灣地區民眾的生活中消逝。</p><p>或許是我們擔心過度，也許只是簡單的紀錄剪紙的創作、意象、美感、記憶，<br />重新再現，融入生活，藉平凡呈現平凡中的不平凡</p><br /></font><p style="margin: 0cm 0cm 0pt 36pt" class="MsoNormal"><font face="標楷體" size="3">只要有心，</font></p><p style="margin: 0cm 0cm 0pt 36pt" class="MsoNormal"><font face="標楷體" size="3">你、我均是前刀糸氏</font></p></td></tr></tbody></table></font></span></span><p style="margin: 0cm 0cm 0pt 36pt" class="MsoNormal"><span style="font-family: Arial; color: black; font-size: 10pt"><span><font size="3" color="#292929"><span style="font-family: 新細明體; color: #999999; font-size: 10pt"><font face="標楷體" size="3">&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;&nbsp;&nbsp;&nbsp; </font></span></font></span></span></p></span></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2906981.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2906981.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2906981.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Tue, 10 Apr 2007 14:30:03 +0800</pubDate>
</item>
<item>
	<title>True Love Faking/真情假愛</title>
	<description><![CDATA[
			展名：Ture Love Faking/真情假愛展期-3/11至3/29(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<div align="center"><pre style="line-height: 14.4pt; margin-top: 12pt"><strong><span style="color: black; font-size: 12pt"><font face="細明體"><font color="#999999">展名：Ture Love Faking/真情假愛</font></font></span></strong></pre></div><div align="center"><pre style="line-height: 14.4pt; margin-top: 12pt"><strong><span style="color: black; font-size: 12pt"><font face="細明體"><font color="#999999">展期<span>-3/11至3/29</span></font></font></span></strong></pre><pre style="line-height: 14.4pt; margin-top: 12pt"><span style="color: black; font-size: 12pt"><font face="細明體"><font color="#999999"><span><strong><img style="width: 479px; height: 372px" src="http://blog.roodo.com/nanhai/bbe46878.jpg" border="0" alt="" width="479" height="372" align="baseline" /><br /><br /><br /></strong><br /><br /><br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610755441792/">(展出紀錄照片)</a></span></font></font></span></pre></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2691672.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2691672.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2691672.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 24 Mar 2007 17:14:13 +0800</pubDate>
</item>
<item>
	<title>沉默 SOUNDS OFF </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;&nbsp;&nbsp;&nbsp; 展覽、活動資訊&nbsp; Exhibition 2007年1月31日（三）－2007年2月4日（日），14:00 &ndash; 21:30｜ 展期2007年1月31日19:00｜開幕同樂會@南海藝廊二樓 w/ Easy 現場音樂演出2007年2月&nbsp; 2日19:00｜沉默在現場@南海藝廊二樓，聲響藝術表演2007年2月&nbsp; 3日16:30 &amp; 19:30｜默劇@南海藝廊2007年2月&nbsp; 4日15:00｜再見茶會@南海藝廊二樓，陳正道作品「回路」放映及喫果子時間(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><strong><span style="font-family: 新細明體"><span>&nbsp;</span><span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>安 安 靜 靜 最 大 聲</span></span></strong></p><p align="center"><strong><span style="font-family: 新細明體"><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <img src="http://blog.roodo.com/nanhai/f0e5dfb4.jpg" border="0" alt="" width="375" height="245" align="baseline" /></span></span></strong></p><p align="center"><span style="font-family: 新細明體"><span><span style="font-family: 新細明體"><strong>展覽、活動資訊</strong></span>&nbsp; Exhibition <br /><font face="新細明體"><span style="color: #666666">2007年1月31日（三）－2007年2月4日（日），14:00 &ndash; 21:30｜ 展期<br />2007年1月31日19:00｜開幕同樂會@南海藝廊二樓 w/ Easy 現場音樂演出<br />2007年2月&nbsp; 2日19:00｜沉默在現場@南海藝廊二樓，聲響藝術表演<br />2007年2月&nbsp; 3日16:30 &amp; 19:30｜默劇@南海藝廊<br />2007年2月&nbsp; 4日15:00｜再見茶會@南海藝廊二樓，陳正道作品「回路」放映及喫果子時間<br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610688192441/">(展出紀錄照片)</a></span></font></span></span></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2628564.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2628564.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2628564.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 20 Jan 2007 19:56:38 +0800</pubDate>
</item>
<item>
	<title>台灣設計週《寶島特有種》</title>
	<description><![CDATA[
			  寶島特有種
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center">  寶島特有種</p><p align="center"><img height="207" hspace="0" src="http://blog.roodo.com/nanhai/5afac37f.jpg" width="306" align="baseline" border="0" /></p><p align="center"><img style="WIDTH: 303px; HEIGHT: 245px" height="245" hspace="0" src="http://blogimage.roodo.com/nanhai/437a63fd.jpg" width="303" align="baseline" border="0" /></p><p align="center"><img style="WIDTH: 303px; HEIGHT: 240px" height="240" hspace="0" src="http://blogimage.roodo.com/nanhai/80fef269.jpg" width="303" align="baseline" border="0" /></p><p align="center" />
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2628614.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2628614.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2628614.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Fri, 19 Jan 2007 17:11:52 +0800</pubDate>
</item>
<item>
	<title>台灣設計週系列活動《寶島特有種》後續報導</title>
	<description><![CDATA[
			 上週六的聚會是個熱絡，同時有更多設計師加入這個行列!!活動照片在這，歡迎大家轉寄或轉貼。http://www.flickr.com/photos/yulin/sets/72157594495474722/ 若你也有當天活動照片在你的blog or flickr，也歡迎分享! 這裡是相關報導: http://prattflora.com/mfastudy/?p=1057http://forgemind.net/xoops/modules/news/article.php?storyid=899&amp;PHPSESSID=2c86c1d99fc5970653ef4aefc56fcaedhttp://blog.pixnet.net/sapo/post/2073110 大家，六月見!!!by  台灣設計師周籌劃小組
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><!--StartFragment --><font color="#999999"> </font></p><div align="center"><font face="Arial"><font size="2"><font color="#999999">上週六的聚會是個熱絡，同時有更多設計師加入這個行列<span class="826050203-23012007">!!</span></font></font></font></div><div align="center"><font face="Arial" size="2"><font color="#999999">活動照片在這，<strong>歡迎大家轉寄或轉貼。</strong><span class="826050203-23012007"><a href="http://www.flickr.com/photos/yulin/sets/72157594495474722/">http://www.flickr.com/photos/yulin/sets/72157594495474722/</a></span></font></font></div><div align="center"><font face="Arial" size="2"><span class="826050203-23012007"></span></font><font color="#999999"> </font></div><div align="center"><font color="#999999"><font face="Arial"><font size="2">若你也有當天活動照片在你的<span class="826050203-23012007">blog or flickr，也歡迎分享! </span></font></font><font face="Arial"><font size="2"><span class="826050203-23012007">這裡是相關報導: </span></font></font></font></div><div align="center"><font face="Arial"><font color="#999999" size="2"><span class="826050203-23012007"><a href="http://prattflora.com/mfastudy/?p=1057">http://prattflora.com/mfastudy/?p=1057</a></span></font></font></div><div align="center"><font face="Arial"><font color="#999999" size="2"><span class="826050203-23012007"><a href="http://forgemind.net/xoops/modules/news/article.php?storyid=899&PHPSESSID=2c86c1d99fc5970653ef4aefc56fcaed">http://forgemind.net/xoops/modules/news/article.php?storyid=899&amp;PHPSESSID=2c86c1d99fc5970653ef4aefc56fcaed</a></span></font></font></div><div align="center"><font face="Arial"><font color="#999999" size="2"><span class="826050203-23012007"><a href="http://blog.pixnet.net/sapo/post/2073110">http://blog.pixnet.net/sapo/post/2073110</a></span></font></font></div><div align="center"><font face="Arial"><font size="2"><span class="826050203-23012007"></span></font></font><font color="#999999"> </font></div><div align="center"><font face="Arial"><font color="#999999" size="2"><span class="826050203-23012007">大家，六月見!!!</span></font></font></div><div align="center"><font face="Arial"><font size="2"><span class="826050203-23012007"><font color="#999999">by <!--StartFragment --><font size="3"> </font><font face="Arial" size="2">台灣設計師周籌劃小組</font></font></span></font></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2672043.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2672043.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2672043.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Fri, 19 Jan 2007 17:10:03 +0800</pubDate>
</item>
<item>
	<title>《頭像計畫》鄭宇翔個展座談會</title>
	<description><![CDATA[
			        座談活動：2007年01月11日星期四 晚間 19：00 -21：00           座談地點：南海藝廊二樓（台北市重慶南路二段19巷3號）        與談來賓：陳泰松、林志明、黃海鳴        歡迎大家踴躍參與！
		]]>
	</description>
	<content:encoded><![CDATA[
			<p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">        座談活動：</span><span lang="EN-US" style="COLOR: #666666; FONT-FAMILY: Arial">2007</span><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">年</span><span lang="EN-US" style="COLOR: #666666; FONT-FAMILY: Arial">01</span><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">月</span><span lang="EN-US" style="COLOR: #666666; FONT-FAMILY: Arial">11</span><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">日星期四</span><span style="COLOR: #666666; FONT-FAMILY: Arial"> </span><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">晚間</span><span style="COLOR: #666666; FONT-FAMILY: Arial"> <span lang="EN-US">19</span></span><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">：</span><span lang="EN-US" style="COLOR: #666666; FONT-FAMILY: Arial">00 -21</span><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">：</span><span lang="EN-US" style="COLOR: #666666; FONT-FAMILY: Arial">00</span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span lang="EN-US" style="COLOR: #666666; FONT-FAMILY: Arial"></span></font><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial"></span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">           座談地點：南海藝廊二樓（台北市重慶南路二段</span><span lang="EN-US" style="COLOR: #666666; FONT-FAMILY: Arial">19</span><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">巷</span><span lang="EN-US" style="COLOR: #666666; FONT-FAMILY: Arial">3</span><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">號）</span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial"></span></font><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial"></span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">        與談來賓：陳泰松、林志明、黃海鳴</span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial"></span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial"></span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial"></span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial"></span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt" align="center"><font size="2"><span style="COLOR: #666666; FONT-FAMILY: 新細明體; mso-ascii-font-family: Arial; mso-hansi-font-family: Arial; mso-bidi-font-family: Arial">        歡迎大家踴躍參與！</span></font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2626664.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2626664.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Mon, 27 Nov 2006 19:49:37 +0800</pubDate>
</item>
<item>
	<title>【展覽】頭像計畫 鄭宇翔個展DECAPITATION  | Yu-Hsiang Cheng Solo Exhibition</title>
	<description><![CDATA[
			(展出紀錄照片)&nbsp;頭像計畫 鄭宇翔個展 DECAPITATION&nbsp; | Yu-Hsiang Cheng Solo Exhibition&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;&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;1.【頭像系列一】影片截圖&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;2.3.4【頭像系列三】作品影像局部&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<span style="font-family: 新細明體; font-size: 16pt"><font size="3"><div align="left"><a href="http://www.flickr.com/photos/nanhai/sets/72157610756913642/"><font size="3"><br /><br />(展出紀錄照片)</font></a>&nbsp;</div></font><div align="left"><br /><br />頭像計畫 鄭宇翔個展 </div><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><br /><strong><em>DECAPITATION&nbsp; | Yu-Hsiang Cheng Solo Exhibition<br /></em></strong>&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;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p><p style="text-justify: inter-ideograph; text-align: justify; margin: 0cm 0cm 0pt" class="MsoNormal" align="center">&nbsp;&nbsp;<a href="http://blog.roodo.com/nanhai/4cb9840c.jpg"><strong><img style="width: 459px; height: 378px" src="http://blog.roodo.com/nanhai/4cb9840c.jpg" border="0" alt="" width="459" height="378" align="baseline" /></strong></a></p><span><p align="left">&nbsp;</p><p style="margin: 0cm 0cm 0pt" class="MsoNormal" align="center"><strong><font size="2">1.【頭像系列一】影片截圖</font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<font size="2">2.3.4【頭像系列三】作品影像局部</font></strong></p><p align="center">&nbsp;</p></span></span>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2551179.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2551179.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2551179.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 26 Nov 2006 22:14:46 +0800</pubDate>
</item>
<item>
	<title>【展覽】帶著作品去旅行五部曲—台東、澎湖、越南、金門、嘉義</title>
	<description><![CDATA[
			(展出紀錄照片)&nbsp;&nbsp;帶著作品去旅行五部曲─台東、澎湖、越南、金門、嘉義Bringing your art work to go travel&mdash;Taitung, Penhu, Vietnam, Kinmen, Chaiyi&nbsp;展覽檔期：95年11月25日至95年12月14日開幕茶會：95年11月25日pm19:00~21:00 「移動方程式」賴芳玉編舞 葉子啟現場行為表演聊天會：&nbsp; 95年11月25日pm20:00開始主辦單位：台灣女性藝術協會協辦單位：國立台北教育大學南海藝廊、台東鐵道一樹村、「女妖在說話」藝廊、澎湖眷村青年譜愛自強協進會、橋仔頭糖廠藝術村、米倉藝術家社區協會、達邦村特富野社區發展協會Period: 95.11.25~95.12.14Opening: 95.11.25 PM19:00~21:00Chatty Symposium: 95.11.25 PM20:00Open Hour: Wed. ~ Sun. PM14:00~21:30Organizer: Taiwan Women&rsquo;s Art Association&nbsp;計畫負責人：吳慧芳、盧崇真、鍾尚宏、許淑真、林慕涵、吳瑪、柯燕美(依時間順序)參展藝術家：何佳真、林牙牙、吳心荷、林慕涵、林麗華、柯燕美、翁君菱、陳君竹、陳淑真、許淑真、莊彩琴、康雅筑、曾玉冰、曾琬婷、黃瑛玉、萬一一、葉子啟、蔡海如、蔡瑛瑾、賴芳玉、盧崇真、鍾尚宏、Philippe Calandre 飛利浦加蘭德爾(按比劃次序)&nbsp;特別感謝：劉玉燕小姐、李韻儀小姐、蔣耀賢先生、商累愛先生、林圓庭小姐、高雄市地方文化館輔導團、越南Mr. Nguyen Duc Vinh、林純用先生、陳泓易先生、不舞小姐、許秀枝小姐、吳相澤先生、高德先生贊助單位：財團法人國家文化藝術基金會、金環球旅行社&nbsp;國立台北教育大學 南海藝廊台北市重慶南路二段19巷3號(順著牯嶺街過南海路口步行1分鐘)02-23935080(限於開放時間來電)開放時間：週三至週日14:00~21:30BLOG: http://blog.roodo.com/nanhai/EMAIL: vaec@tea.ntue.edu.tw&nbsp;展覽簡介：有關這個展覽，是台灣女性藝術協會2006年一整年的旅遊事件，而這個在台北南海藝廊的展演則是今年的最後旅站。他是許多事件的連結發生(發聲)，在過程裡牽扯到一種有關不停流動的交換，藝術家藉由帶著作品去旅行，連結了一種活的文化地景生態，並根著於社群與土地。這個計畫的藝術家彷若像個旅人、研究者、冒險家、解說員、創作者的綜合體，將事件化的過程與獨特的田調方式相互照映的呈現。這個展演有關的文件展包括有1.旅遊地點短暫性交流展、2.駐地創作與呈現、3.地區性田野調查，還有第四個部份是旅行過後所引發新的創作計畫。而在南海藝廊的總體呈現之後，我們將接續在2007年帶著這些作品回到當初的地點，讓它們不再成為一種精英式壟斷的藝術形態，而是一種不停滾動的共享式文化活動與交換。IntroductionWAA organized this exhibition in order to exhibit the results of our traveling events in this whole year 2006. Nan-hai gallery, Taipei, is the last destination in this project named &ldquo;Bringing your art work to go travel&rdquo;. The core concept of this project is that artists want to communicate with local communities, integrate the personal artistic ideas with cultural ecology so as to travel with their own art. Our artists play the roles like traveler, researcher, adventure, interpreter, inventor, or even the mixture of all.The documents of this exhibition-performance are including: 1. temporary exchange exhibitions in each destination, 2. creations of temporary artistic habitant, 3. regional field surveys, especially, 4. new creative plants which draw up by travels. After this exhibition, we&rsquo;re going to bring these art works back to the original spots in 2007. We want to make no more elitist, monopolized art form but turn to keep changing and sharing cultural activities and exchange.&nbsp;展覽資訊&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 展覽新聞稿&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2"><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157610757105094/">(展出紀錄照片)</a></p><p style="margin: 0cm 0cm 0pt" class="MsoNormal">&nbsp;</p><p>&nbsp;帶著作品去旅行五部曲─台東、澎湖、越南、金門、嘉義<br />Bringing your art work to go travel&mdash;Taitung, Penhu, Vietnam, Kinmen, Chaiyi<br />&nbsp;<br />展覽檔期：95年11月25日至95年12月14日<br />開幕茶會：95年11月25日pm19:00~21:00 「移動方程式」賴芳玉編舞 葉子啟現場行為表演<br />聊天會：&nbsp; 95年11月25日pm20:00開始</p><p>主辦單位：台灣女性藝術協會<br />協辦單位：國立台北教育大學南海藝廊、台東鐵道一樹村、「女妖在說話」藝廊、澎湖眷村青年譜愛自強協進會、橋仔頭糖廠藝術村、米倉藝術家社區協會、達邦村特富野社區發展協會<br />Period: 95.11.25~95.12.14<br />Opening: 95.11.25 PM19:00~21:00<br />Chatty Symposium: 95.11.25 PM20:00<br />Open Hour: Wed. ~ Sun. PM14:00~21:30<br />Organizer: Taiwan Women&rsquo;s Art Association<br />&nbsp;<br />計畫負責人：吳慧芳、盧崇真、鍾尚宏、許淑真、林慕涵、吳瑪、柯燕美(依時間順序)</p><p>參展藝術家：</p><p>何佳真、林牙牙、吳心荷、林慕涵、林麗華、柯燕美、翁君菱、陳君竹、陳淑真、<br />許淑真、莊彩琴、康雅筑、曾玉冰、曾琬婷、黃瑛玉、萬一一、葉子啟、蔡海如、<br />蔡瑛瑾、賴芳玉、盧崇真、鍾尚宏、Philippe Calandre 飛利浦加蘭德爾(按比劃次序)<br />&nbsp;<br />特別感謝：</p><p>劉玉燕小姐、李韻儀小姐、蔣耀賢先生、商累愛先生、林圓庭小姐、<br />高雄市地方文化館輔導團、越南Mr. Nguyen Duc Vinh、林純用先生、<br />陳泓易先生、不舞小姐、許秀枝小姐、吳相澤先生、高德先生</p><p>贊助單位：</p><p>財團法人國家文化藝術基金會、金環球旅行社<br />&nbsp;<br />國立台北教育大學 南海藝廊<br />台北市重慶南路二段19巷3號(順著牯嶺街過南海路口步行1分鐘)<br />02-23935080(限於開放時間來電)<br />開放時間：週三至週日14:00~21:30<br />BLOG: <a href="http://blog.roodo.com/nanhai/">http://blog.roodo.com/nanhai/</a><br />EMAIL: <a href="mailto:vaec@tea.ntue.edu.tw">vaec@tea.ntue.edu.tw</a><br />&nbsp;<br />展覽簡介：<br />有關這個展覽，是台灣女性藝術協會2006年一整年的旅遊事件，而這個在台北南海藝廊的展演則是今年的最後旅站。<br />他是許多事件的連結發生(發聲)，在過程裡牽扯到一種有關不停流動的交換，藝術家藉由帶著作品去旅行，連結了一<br />種活的文化地景生態，並根著於社群與土地。這個計畫的藝術家彷若像個旅人、研究者、冒險家、解說員、創作者的<br />綜合體，將事件化的過程與獨特的田調方式相互照映的呈現。這個展演有關的文件展包括有1.旅遊地點短暫性交流展、<br />2.駐地創作與呈現、3.地區性田野調查，還有第四個部份是旅行過後所引發新的創作計畫。而在南海藝廊的總體呈現之後，<br />我們將接續在2007年帶著這些作品回到當初的地點，讓它們不再成為一種精英式壟斷的藝術形態，而是一種不停滾動的共享式文化活動與交換。<br />Introduction<br />WAA organized this exhibition in order to exhibit the results of our traveling events in this whole year 2006. Nan-hai gallery, Taipei, is the last destination in this project named &ldquo;Bringing your art work to go travel&rdquo;. The core concept of this project is that artists want to communicate with local communities, integrate the personal artistic ideas with cultural ecology so as to travel with their own art. Our artists play the roles like traveler, researcher, adventure, interpreter, inventor, or even the mixture of all.<br />The documents of this exhibition-performance are including: 1. temporary exchange exhibitions in each destination, 2. creations of temporary artistic habitant, 3. regional field surveys, especially, 4. new creative plants which draw up by travels. After this exhibition, we&rsquo;re going to bring these art works back to the original spots in 2007. We want to make no more elitist, monopolized art form but turn to keep changing and sharing cultural activities and exchange.<br />&nbsp;</p><br /><p><a href="http://blog.roodo.com/nanhai/aaa6ce11.doc">展覽資訊</a>&nbsp;&nbsp;&nbsp;<a href="http://blog.roodo.com/nanhai/4b290c5d.doc">&nbsp;&nbsp; 展覽新聞稿</a></p></font><font size="4"><br /><a href="http://blog.roodo.com/nanhai/e6e6e67c.jpg"><img style="width: 257px; height: 351px" src="http://blog.roodo.com/nanhai/e6e6e67c.jpg" border="0" alt="" width="257" height="351" align="baseline" /></a></font>&nbsp; <br />&nbsp;<br />&nbsp;<br />&nbsp;<br />&nbsp;<img style="width: 465px; height: 328px" src="http://blog.roodo.com/nanhai/dbd7f2f1.jpg" border="0" alt="" width="465" height="328" align="baseline" />&nbsp;
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2480860.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2480860.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2480860.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Tue, 21 Nov 2006 02:15:32 +0800</pubDate>
</item>
<item>
	<title>【展覽】我是一個小孩子/阿原</title>
	<description><![CDATA[
			《 我 是 一 個 小 孩 子》阿原&nbsp; &nbsp;攝影展(展出紀錄照片)&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><strong><font size="4">《 我 是 一 個 小 孩 子》<br /></font></strong><font size="2"><br /></font><font size="4">阿原&nbsp; &nbsp;攝影展<br /></font></p><p align="right"><img src="http://blog.roodo.com/nanhai/ba2af4fb.jpg" border="0" alt="" align="baseline" /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157617514056072/">(展出紀錄照片)</a>&nbsp;</p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2480833.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2480833.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2480833.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Wed, 15 Nov 2006 02:04:02 +0800</pubDate>
</item>
<item>
	<title>【展覽】零座標的疆域</title>
	<description><![CDATA[
			 零座標的疆域&nbsp;台灣與香港當代藝術創作中的凝視與開裂(展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<a href="http://www.flickr.com/photos/nanhai/245237594/" title="Photo Sharing"><img src="http://static.flickr.com/85/245237594_36a60b113b_s.jpg" alt="零座標的疆域" width="75" height="75" align="left" /></a> <p align="center"><font color="#663399"><font size="4"><strong>零座標的疆域&nbsp;</strong></font><font size="2" color="#663399">台灣與香港當代藝術創作中的凝視與開裂<br /><br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157618089887653/">(展出紀錄照片)</a></font></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2159043.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2159043.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2159043.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Tue, 26 Sep 2006 23:51:48 +0800</pubDate>
</item>
<item>
	<title>【展覽】實況透視</title>
	<description><![CDATA[
			《 實 況 透 視 》《Real Time for Perspective》陳長志 聲響與裝置藝術個展Sound art and installation art solo exhibition by Chang Chih Chen (展出紀錄照片)
		]]>
	</description>
	<content:encoded><![CDATA[
			<a href="http://www.flickr.com/photos/nanhai/218260825/" title="Photo Sharing"><img src="http://static.flickr.com/89/218260825_ecc10a5c3e_s.jpg" alt="實況透視-陳長志個展DM-for_net" width="75" height="75" align="left" /></a><font size="2"><strong><font size="4">《 實 況 透 視 》</font></strong><br />《Real Time for Perspective》<br /><font size="4">陳長志 聲響與裝置藝術個展<br /></font>Sound art and installation art solo exhibition by Chang Chih Chen</font> <br /><br /><a href="http://www.flickr.com/photos/nanhai/sets/72157615842801173/">(展出紀錄照片)</a>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2035111.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2035111.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2035111.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sat, 09 Sep 2006 16:18:19 +0800</pubDate>
</item>
<item>
	<title>【公告】佈展告示8/27-9/8</title>
	<description><![CDATA[
			8月27日至9月08日【 佈 展 中】一樓佈展期間，二樓照常開放★ 9/9（六）展覽開幕：實況透視
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="4"><strong>8月27日至9月08日<br />【 佈 展 中】</strong></font></p><p align="center"><font size="2">一樓佈展期間，二樓照常開放<br />★ 9/9（六）展覽開幕：實況透視</font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2070759.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2070759.html</guid>
	<category>近期展覽／Exhibitions</category>
	<pubDate>Sun, 27 Aug 2006 14:54:55 +0800</pubDate>
</item>
</channel>
</rss>