<?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-跨域交流／Interflow</title>
<link>http://blog.roodo.com/nanhai/archives/cat_646985.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_646985.xml" rel="self" type="application/rss+xml" />
<item>
	<title>【跨域交流】《即將失去的一切》新書撈魚會 (1107)</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/377da3bc.jpg"><div align="center"><img src="http://blog.roodo.com/nanhai/d6680dd5.jpg" border="0" alt="" width="540" height="220" /></div></td></tr></tbody></table>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10434043.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10434043.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10434043.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Tue, 06 Oct 2009 17:17:31 +0800</pubDate>
</item>
<item>
	<title>【跨域交流】Halloween Electronic Music Massive War (10/30-31)</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<table border="0" cellspacing="0" cellpadding="0" width="100%"><tbody><tr><td bgcolor="#121212"><div align="center"><img src="http://blog.roodo.com/nanhai/78e505da.jpg" alt="" width="520" height="220" /></div></td></tr></tbody></table>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10474751.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10474751.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10474751.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sun, 04 Oct 2009 15:15:15 +0800</pubDate>
</item>
<item>
	<title>【跨域交流】文化創意發展國際研討會(10/23-25)</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/c547abb1.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10279137.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10279137.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10279137.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 05 Sep 2009 23:04:48 +0800</pubDate>
</item>
<item>
	<title>【跨域交流】藝穗節第二屆 藝穗貳勢力 (08/29-09/13) 南海藝廊 場次</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<table border="0" cellspacing="0" cellpadding="0" width="100%" align="center"><tbody><tr><td bgcolor="#ffffff"><div align="center"><img src="http://blog.roodo.com/nanhai/8a743233.jpg" border="0" alt="" width="520" height="180" /></div></td></tr></tbody></table>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/9866805.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9866805.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9866805.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sun, 16 Aug 2009 21:02:13 +0800</pubDate>
</item>
<item>
	<title>【跨域交流】Ace科藝統合課程(0627 Sat. 14:00)藝鼠－藝術教育論壇</title>
	<description><![CDATA[
			06/27 Sat. 14:00 freeAce科藝統合課程藝鼠－藝術教育論壇
		]]>
	</description>
	<content:encoded><![CDATA[
			<img src="http://blog.roodo.com/nanhai/4651fd7d.jpg" border="0" alt="" hspace="5" width="160" height="120" align="left" /><font size="2">06/27 Sat. 14:00 <font color="#ff0000">free<br /></font></font><font size="1"><br /></font><font size="6">Ace科藝統合課程<br /><font size="1"><br /></font></font>藝鼠－藝術教育論壇
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/9303867.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/9303867.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/9303867.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Mon, 15 Jun 2009 22:22:22 +0800</pubDate>
</item>
<item>
	<title>『三國入菜』文學創意獎助活動</title>
	<description><![CDATA[
			對抗不景氣‧閱讀飆創意『三國入菜』文學創意獎助活動狀元獎&nbsp; 市價近五萬元之頂級華碩竹子版筆記型電腦
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6"><img src="http://blog.roodo.com/nanhai/8db729e4.jpg" border="0" alt="" hspace="5" width="200" height="189" align="left" /><font size="2"><br /></font><font size="3">對抗不景氣‧閱讀飆創意</font><br /><font size="2"><br /></font>『三國入菜』<br /><font size="2"><br /></font>文學創意獎助活動</font><br /><br /><font size="2">狀元獎&nbsp; 市價近五萬元之頂級華碩竹子版筆記型電腦</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8476113.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8476113.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8476113.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 28 Feb 2009 15:49:56 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （2/28 Sat. 14:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2009年2月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：藝術教育開放發表會主持人： 陳佳瑩 老師（前台北縣藝文輔導團輔導員）
		]]>
	</description>
	<content:encoded><![CDATA[
			<br /><div align="center">藝鼠－藝術教育論壇<br />2009年2月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：藝術教育開放發表會</div><br /><div align="left"><div align="left"><div align="center">主持人： 陳佳瑩 老師（前台北縣藝文輔導團輔導員）</div></div></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8294563.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8294563.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8294563.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 28 Feb 2009 12:42:58 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （10/25 Sat. 14:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2008年10月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：生命與藝術講者：黃壬來教授
		]]>
	</description>
	<content:encoded><![CDATA[
			<div align="center"><font size="2"><br /><br />藝鼠－藝術教育論壇<br />2008年10月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：生命與藝術<br /></font><div align="left"><div align="left"><div align="center">講者：黃壬來教授</div></div></div></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/7431853.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/7431853.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/7431853.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 25 Oct 2008 01:24:52 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （9/27 Sat. 13:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2008年9月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：從數位音樂演進，看台灣「獨立音樂創作」發展講者：江亦帆
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2"><div align="center"><font size="2"><br /><br />藝鼠－藝術教育論壇<br />2008年9月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：從數位音樂演進，看台灣「獨立音樂創作」發展<br /></font><div align="left"><div align="left"><div align="center">講者：江亦帆</div></div></div></div></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/7244447.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/7244447.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/7244447.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 27 Sep 2008 00:04:34 +0800</pubDate>
</item>
<item>
	<title>【臺北藝穗節】2008臺北藝穗節 南海藝廊場次</title>
	<description><![CDATA[
			城市文化裡，有一種藝術屬於另類、非主流、獨立藝術的存在，它們可能在畫廊、公園、咖啡廳、廣場演出，這一類演出，在英國愛丁堡名喚「藝穗」(Fringe)，在法國亞維儂稱之為「外」(off)，它們象徵自由開放、成熟主動的演出精神。
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/9ebe50a5.jpg" target="_blank"></a></div><div class="pict"><a href="http://blog.roodo.com/nanhai/9ebe50a5.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/9ebe50a5_s.jpg" border="0" alt="藝穗節.jpg" hspace="5" align="left" /></a></div>城市文化裡，有一種藝術屬於另類、非主流、獨立藝術的存在，它們可能在畫廊、公園、咖啡廳、廣場演出，這一類演出，在英國愛丁堡名喚「藝穗」(Fringe)，在法國亞維儂稱之為「外」(off)，它們象徵自由開放、成熟主動的演出精神。
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/6823557.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/6823557.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/6823557.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Thu, 31 Jul 2008 21:27:14 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （6/28 Sat. 14:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2008年6月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：新興科目「表演藝術」的教學經驗分享&mdash;談中等學校藝術與人文領域教學的困境與高中藝術生活科的概況 講者：劉用德
		]]>
	</description>
	<content:encoded><![CDATA[
			<br /><font size="2"><div align="center"><font size="2">藝鼠－藝術教育論壇<br />2008年6月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：新興科目「表演藝術」的教學經驗分享&mdash;<br />談中等學校藝術與人文領域教學的困境與高中藝術生活科的概況 <div align="left"><div align="left"><div align="center">講者：劉用德</div></div></div></font></div></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/6168053.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/6168053.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/6168053.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 28 Jun 2008 17:23:46 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （4/26 Sat. 14:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2008年4月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：三月瘋媽祖，瘋什麼？──以大甲媽祖遶境進香活動為例，談一個從『信仰』到『文化』的課題&nbsp; 講者：賴政育( 群邑工作室 )
		]]>
	</description>
	<content:encoded><![CDATA[
			<div align="center"><font size="2"><br />藝鼠－藝術教育論壇<br />2008年4月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：三月瘋媽祖，瘋什麼？<br />──以大甲媽祖遶境進香活動為例，談一個從『信仰』到『文化』的課題&nbsp; <div align="left"><div align="left"><div align="center">講者：賴政育( 群邑工作室 )</div></div></div></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/5881555.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/5881555.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/5881555.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 26 Apr 2008 18:07:50 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （3/29 Sat. 14:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2008年3月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：藝術與人文課綱微調，你不可不知的「轉變」&nbsp; 講者：陳思汀
		]]>
	</description>
	<content:encoded><![CDATA[
			<br /><font size="2"><div align="center"><font size="2">藝鼠－藝術教育論壇<br />2008年3月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：藝術與人文課綱微調，你不可不知的「轉變」&nbsp; <div align="left"><div align="left"><div align="center">講者：陳思汀</div></div></div></font></div></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/5768797.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/5768797.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/5768797.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 29 Mar 2008 15:26:00 +0800</pubDate>
</item>
<item>
	<title>【台灣設計師週】展覽緣起</title>
	<description><![CDATA[
			展覽時間: 2008年6月28日至2008年7月4日 展期7天展覽地點: 信義公民會館（台北市信義區松勤街50號）
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><img class="pict" src="http://blog.roodo.com/nanhai/913b3d80.gif" border="0" alt="sticker_lg.gif" hspace="5" width="135" height="135" align="left" />展覽時間: 2008年6月28日至2008年7月4日 展期7天</div><div class="pict">展覽地點: 信義公民會館（台北市信義區松勤街50號）</div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/5858899.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/5858899.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/5858899.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 29 Mar 2008 13:18:05 +0800</pubDate>
</item>
<item>
	<title>【台灣設計師週】看看2007的設計師週</title>
	<description><![CDATA[
			轉載自臺灣設計師週Blog joycechou on Mar 17th 2008http://designersweek.tw/blog/
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/4d865dd3.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/4d865dd3_s.jpg" border="0" alt="2379353518_4335b77d7e.jpg" hspace="5" width="160" height="160" align="left" /></a>轉載自臺灣設計師週Blog <br />joycechou on Mar 17th 2008<br /><a href="http://designersweek.tw/blog/">http://designersweek.tw/blog/</a></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/5858805.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/5858805.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/5858805.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Fri, 28 Mar 2008 12:54:02 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （12/29 Sat. 14:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2007年11月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：藝術教育在美術館中的實踐：美國與法國各美術館教育現況 講者：李霜青 
		]]>
	</description>
	<content:encoded><![CDATA[
			<br /><div align="center"><p align="center"><br /><br /><br /><font size="2">藝鼠－藝術教育論壇<br />2007年11月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：藝術教育在美術館中的實踐：美國與法國各美術館教育現況 <div align="left"><div align="left"><div align="center">講者：李霜青 </div></div></div></font></p></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4637191.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4637191.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4637191.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 29 Dec 2007 17:08:33 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （11/24 Sat. 13:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2007年11月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：來聽林生祥配合附近牯嶺街社區活動，這次的藝鼠由原先的2:00提前到1:00開始，敬請準時出席
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><br /><br /><br /><br />藝鼠－藝術教育論壇<br />2007年11月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：來聽林生祥<br /><br /><font size="2">配合附近牯嶺街社區活動，這次的藝鼠由原先的2:00提前到1:00開始，敬請準時出席</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4475997.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4475997.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4475997.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 24 Nov 2007 02:24:25 +0800</pubDate>
</item>
<item>
	<title>動保聯盟新SHOW （11/24、25 Sat. Sun. 9:00─17:00 ）</title>
	<description><![CDATA[
			救生──不送死&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 與牯嶺街創意市集同時同步的〈動保聯盟新SHOW〉創作藝品、貓狗認養、詩歌聖樂、餐飲小敘
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/4c26aa46.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/4c26aa46_s.jpg" border="0" alt="救生不送死.jpg" hspace="5" width="160" height="160" align="left" /></a>救生──不送死<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br /><font size="2">與牯嶺街創意市集</font><font size="2">同時同步的〈動保聯盟新SHOW〉</font><br /><font size="2">創作藝品、貓狗認養、詩歌聖樂、餐飲小敘<br /></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4525929.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4525929.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4525929.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Wed, 21 Nov 2007 20:50:39 +0800</pubDate>
</item>
<item>
	<title>2007 第八屆台北詩歌節「羅思容詩歌演唱會」</title>
	<description><![CDATA[
			時間：2007.11.10（Sat）14:00地點：南海藝廊庭院演出：羅思容曲目：小島、壁虎、誰、關於故鄉的一些計算、門曲目：紅、沉睡、當我穿過這城市、孤毛頭
		]]>
	</description>
	<content:encoded><![CDATA[
			<div><a href="http://blog.roodo.com/nanhai/3171dd66.jpg" target="_blank"><img src="http://blog.roodo.com/nanhai/3171dd66_s.jpg" border="0" alt="羅思容.jpg" title="羅思容.jpg" hspace="10" width="160" height="239" align="left" /></a><br /><font size="2">時間：2007.11.10（Sat）14:00<br />地點：南海藝廊庭院<br />演出：羅思容<br />曲目：小島、壁虎、誰、關於故鄉的一些計算、門<br />曲目：紅、沉睡、當我穿過這城市、孤毛頭</font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4329579.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4329579.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4329579.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 10 Nov 2007 17:02:22 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （10/27 Sat. 14:00 free ）</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇2007年10月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：「金敏綜藝團」插角國小金敏分校團隊分享 
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><br /><br /><br /><br />藝鼠－藝術教育論壇<br />2007年10月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：「金敏綜藝團」插角國小金敏分校團隊分享 </p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4363093.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4363093.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4363093.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 27 Oct 2007 15:57:36 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （09/29 Sat. 14:00 free ）</title>
	<description><![CDATA[
			&nbsp;藝鼠－藝術教育論壇2007年9月份活動通告 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主題：一個策展人與藝評人的心聲 
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center">&nbsp;</p><p align="center">藝鼠－藝術教育論壇<br />2007年9月份活動通告 <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />主題：一個策展人與藝評人的心聲 </p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/4199579.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/4199579.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/4199579.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Thu, 27 Sep 2007 17:52:39 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （08/25 Sat. 14:00 free ）</title>
	<description><![CDATA[
			&nbsp;主題：「全球藝術教育網」討論區議題開放論壇 
		]]>
	</description>
	<content:encoded><![CDATA[
			<p>&nbsp;</p><p><font size="2">主題：「全球藝術教育網」討論區議題開放論壇</font> </p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3941147.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3941147.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3941147.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 25 Aug 2007 16:14:15 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 （07/28 Sat. 14:00 free ）</title>
	<description><![CDATA[
			1. 國中高關懷班的藝術治療經驗2. 年長者的口述歷史：生命回顧的儀式呈現
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2"><font size="3"><span><span style="font-family: 新細明體"><font color="#999999"><span><p align="left"><font color="#808080"><span style="font-family: 新細明體"><font size="2"><font size="3"><font size="2">1. 國中高關懷班的藝術治療經驗<br /></font></font></font></span><span style="font-family: 新細明體"><font size="2"><font size="3"><font size="2">2. 年長者的口述歷史：生命回顧的儀式呈現</font></font></font></span></font></p></span></font></span></span></font></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3720847.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3720847.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3720847.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 28 Jul 2007 15:32:44 +0800</pubDate>
</item>
<item>
	<title>ALLO您好派對--母親節派對</title>
	<description><![CDATA[
			&nbsp;Allo您好派對誠摯邀請您~!!&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font style="background-color: #ffffff" color="#cc99ff"><em><img style="width: 113px; height: 158px" src="http://blog.roodo.com/nanhai/c3ff3bef.jpg" alt="" width="113" height="158" />&nbsp;</em></font></p><p align="center"><font style="background-color: #ffffff" color="#cc99ff"><em>Allo您好派對誠摯邀請您~!!</em></font>&nbsp;</p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3217251.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3217251.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3217251.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Wed, 25 Apr 2007 20:19:48 +0800</pubDate>
</item>
<item>
	<title>藝鼠─藝術草根經驗與標準化學習成效評量的批判</title>
	<description><![CDATA[
			藝鼠－藝術教育論壇主題：「感覺『論述』」: 藝術教師草根經驗與標準化學習成效評量的批判主講者：孔建宸先生&nbsp;◆收費：完全免費 （也不需事先報名）◆時間：五月二十六日（星期六）下午2：00&mdash;6：00◆地點：台北教師會館一樓大廳的「南海咖啡」(台北市中正區南海路15號 ，總機電話：02-2341-9161~6)&nbsp; 可以參考周邊交通圖p.s.因為在借場地前，南海藝廊已規劃在5/26辦「牯嶺街書香創意市集」，所以僅5/26藝鼠的活動移至南海咖啡，請大家注意喔～◆會館交通資訊：捷運淡水線： 中正紀念堂站1號出口公車公賣局站： 204、204(區間)、227、235、241、244、295、5、532、630、662、663、中山幹線民眾活動中心站： 3,238,248,262,304◆停車：中正紀念堂地下停車場、仰德大樓停車場、路邊◆藝鼠延伸討論區：http://gnae.ntue.edu.tw/arted/forum_list.jsp◆聯絡人：林華鈴 hualing@gnae.ntue.edu.tw&nbsp;&nbsp; 電話：0955-140-902◆「全球藝術教育網」網址更新，請大家告訴大家～http://gnae.ntue.edu.tw/
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="4" color="#333333"><strong>藝鼠－藝術教育論壇</strong></font></p><p><font color="#333333"><strong>主題：「感覺『論述』」: 藝術教師草根經驗與標準化學習成效評量的批判<br />主講者：孔建宸先生<br /></strong></font><font size="2">&nbsp;</font></p><p><font size="2" color="#999999"><font color="#999999">◆收費：完全免費 （也不需事先報名）<br />◆時間：五月二十六日（星期六）下午2：00&mdash;6：00<br />◆地點：台北教師會館一樓大廳的「南海咖啡」(台北市中正區南海路15號 ，總機電話：02-2341-9161~6)&nbsp; 可以參考周邊交通圖<br />p.s.因為在借場地前，南海藝廊已規劃在5/26辦「牯嶺街書香創意市集」，所以僅5/26藝鼠的活動移至南海咖啡，請大家注意喔～<br />◆會館交通資訊：<br />捷運淡水線： 中正紀念堂站1號出口<br />公車公賣局站： 204、204(區間)、227、235、241、244、295、5、532、630、662、663、中山幹線<br />民眾活動中心站： 3,238,248,262,304<br />◆停車：中正紀念堂地下停車場、仰德大樓停車場、路邊<br />◆藝鼠延伸討論區：<a href="http://gnae.ntue.edu.tw/arted/forum_list.jsp">http://gnae.ntue.edu.tw/arted/forum_list.jsp</a><br />◆聯絡人：林華鈴 <a href="mailto:hualing@gnae.ntue.edu.tw">hualing@gnae.ntue.edu.tw</a>&nbsp;&nbsp; 電話：0955-140-902<br />◆「全球藝術教育網」網址更新，請大家告訴大家～<a href="http://gnae.ntue.edu.tw/">http://gnae.ntue.edu.tw/</a></font></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3126475.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3126475.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3126475.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Tue, 24 Apr 2007 14:50:38 +0800</pubDate>
</item>
<item>
	<title>藝鼠－藝術教育論壇 </title>
	<description><![CDATA[
			主題：「藝企合作」--&nbsp;談台灣的社會藝術教育&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;三月份藝鼠新地點的新主講人，是富邦藝術基金會執行長，人稱「熊」的熊傳&nbsp;慧。「熊」是富邦講堂的最初捉刀者，為大台北地區上班族提供了一個熱鬧又有質&nbsp;感的藝文學習空間。&nbsp;「熊」最著稱的概念是「藝企合作」，就是連結企業與藝術工作者的資源，使企業&nbsp;挹注藝術創作，為台灣新生代藝術家延伸觸角與知名度，也讓企業形象因藝術家及&nbsp;其創作而豐富，轉化企業內部氣質，真是創造雙贏局面。&nbsp;◆藝鼠延伸討論區：http://gnae.ntue.edu.tw/arted/forum_list.jsp&nbsp;◆「全球藝術教育網」網址：http://gnae.ntue.edu.tw/&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal"><span style="color: #999999; font-family: 細明體">主題：「藝企合作」</span><span style="color: #999999">--&nbsp;</span><span style="color: #999999; font-family: 細明體">談台灣的社會藝術教育</span><span style="color: #999999; font-family: Arial">&nbsp;</span></p><br /><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: Arial">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-size: 10pt; color: #999999">&nbsp;</span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">三月份藝鼠新地點的新主講人，是富邦藝術基金會執行長，人稱「熊」的熊傳</span></p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: 新細明體">慧。「熊」是</span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">富邦講堂的最初捉刀者，為大台北地區上班族提供了一個熱鬧又有質</span></p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: 新細明體">感的藝文學習空間。</span></p><br /><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: 新細明體">「熊」最著稱的概念是「藝企合作」，就是連結企業與藝術工作者的資源，使企業</span></p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: 新細明體">挹注藝術創</span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">作，為台灣新生代藝術家延伸觸角與知名度，也讓企業形象因藝術家及</span></p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: 新細明體">其創作而豐富，轉化企</span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">業內部氣質，真是創造雙贏局面。</span></p><br /><p style="margin: 0cm 0cm 0pt" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: 細明體">◆</span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">藝鼠延伸討論區：</span><span style="font-size: 10pt; color: #999999; font-family: Arial"><a href="http://gnae.ntue.edu.tw/arted/forum_list.jsp"><span style="color: #999999"><font color="#999999">http://gnae.ntue.edu.tw/arted/forum_list.jsp</font></span></a></span></p><br /><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal">&nbsp;</p><p style="margin: 0cm 0cm 0pt; line-height: 150%" class="MsoNormal"><span style="font-size: 10pt; color: #999999; font-family: 細明體">◆</span><span style="font-size: 10pt; color: #999999; font-family: 新細明體">「全球藝術教育網」網址：</span><span style="color: #999999; font-family: Arial"><a href="http://gnae.ntue.edu.tw/" target="_blank"><span style="font-size: 10pt; color: #999999"><font color="#999999">http://gnae.ntue.edu.tw/</font></span></a></span><span style="font-size: 10pt; color: #999999; font-family: Arial"><font color="#999999">&nbsp;<br /><img style="width: 780px; height: 12px" src="http://blog.roodo.com/nanhai/6e6d027b.gif" alt="" width="780" height="12" /></font></span></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2870287.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2870287.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2870287.html</guid>
	<category>跨域交流／Interflow</category>
	<pubDate>Sat, 24 Mar 2007 16:33:48 +0800</pubDate>
</item>
</channel>
</rss>