<?xml version="1.0" encoding="utf-8"?> 
<feed version="0.3" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="zh-tw"> 
<title>南海藝廊 Nanhai Gallery</title> 
<link rel="alternate" type="text/html" href="http://blog.roodo.com/nanhai/" /> 
<modified>2009-11-22T14:04:20+08:00</modified> 
<tagline>



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</tagline> 
<id>tag:blog.roodo.com,2009://51348</id> 
<generator url="http://blog.yam.com/" version="1.0">Roodo Blog</generator> 
<copyright>Copyright (c) 2005, </copyright> 
 <entry> 
 <title>【創意市集】2009 第九屆牯嶺街書香創意市集</title> 
 <link rel="alternate" type="text/html" href="http://blog.roodo.com/nanhai/archives/10174325.html" /> 
 <modified>2009-11-16T09:04:56+08:00</modified> 
 <issued>2009-11-16T09:04:56+08:00</issued> 
 <id>tag:blog.roodo.com,2009://51348.10174325</id> 
 <created>2009-11-27T11:11:11+08:00</created> 
  <author>
 <name></name> 
 <url>http://blog.roodo.com/nanhai/</url> 
 
</author> 
<dc:subject>創意市集／Mart</dc:subject> 
<summary type="text/html" mode="escaped">
<![CDATA[
]]>
</summary> 
<content type="text/html" mode="escaped" xml:lang="zh-tw" xml:base="http://blog.roodo.com/nanhai/archives/10174325.html">
<![CDATA[
	<table border="0" cellspacing="0" cellpadding="0" width="100%"><tbody><tr><td style="background-position: 50% 0%" background="http://blog.roodo.com/nanhai/600040f1.jpg"><div align="center"><img src="http://blog.roodo.com/nanhai/dd648972.gif" border="0" alt="" width="520" height="320" /></div></td></tr></tbody></table>
	<a href="http://blog.roodo.com/nanhai/archives/10174325.html">(繼續閱讀...)</a>]]>
</content>
</entry> 
 <entry> 
 <title>【創意市集】《書的日用品》入選攤位與繳費名單 (√)</title> 
 <link rel="alternate" type="text/html" href="http://blog.roodo.com/nanhai/archives/10626627.html" /> 
 <modified>2009-11-18T16:38:44+08:00</modified> 
 <issued>2009-11-18T16:38:44+08:00</issued> 
 <id>tag:blog.roodo.com,2009://51348.10626627</id> 
 <created>2009-11-26T14:16:41+08:00</created> 
  <author>
 <name></name> 
 <url>http://blog.roodo.com/nanhai/</url> 
 
</author> 
<dc:subject>創意市集／Mart</dc:subject> 
<summary type="text/html" mode="escaped">
<![CDATA[
]]>
</summary> 
<content type="text/html" mode="escaped" xml:lang="zh-tw" xml:base="http://blog.roodo.com/nanhai/archives/10626627.html">
<![CDATA[
	<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/1b15dce9.jpg" border="0" alt="" width="520" height="220" /></div>
	<a href="http://blog.roodo.com/nanhai/archives/10626627.html">(繼續閱讀...)</a>]]>
</content>
</entry> 
 <entry> 
 <title>【創意市集】《行動句》演出團隊（報名簡章）</title> 
 <link rel="alternate" type="text/html" href="http://blog.roodo.com/nanhai/archives/10426847.html" /> 
 <modified>2009-11-22T00:40:53+08:00</modified> 
 <issued>2009-11-22T00:40:53+08:00</issued> 
 <id>tag:blog.roodo.com,2009://51348.10426847</id> 
 <created>2009-11-25T00:00:01+08:00</created> 
  <author>
 <name></name> 
 <url>http://blog.roodo.com/nanhai/</url> 
 
</author> 
<dc:subject>創意市集／Mart</dc:subject> 
<summary type="text/html" mode="escaped">
<![CDATA[
]]>
</summary> 
<content type="text/html" mode="escaped" xml:lang="zh-tw" xml:base="http://blog.roodo.com/nanhai/archives/10426847.html">
<![CDATA[
	<table border="0" cellspacing="0" cellpadding="0" width="100%"><tbody><tr><td background="http://blog.roodo.com/nanhai/6eb65435.jpg"><img src="http://blog.roodo.com/nanhai/8a99485e.jpg" border="0" alt="" width="540" height="220" /></td></tr></tbody></table>
	<a href="http://blog.roodo.com/nanhai/archives/10426847.html">(繼續閱讀...)</a>]]>
</content>
</entry> 
 <entry> 
 <title>（十一月．十二月）連橫合縱同流膜</title> 
 <link rel="alternate" type="text/html" href="http://blog.roodo.com/nanhai/archives/10504233.html" /> 
 <modified>2009-11-21T15:12:08+08:00</modified> 
 <issued>2009-11-21T15:12:08+08:00</issued> 
 <id>tag:blog.roodo.com,2009://51348.10504233</id> 
 <created>2009-11-11T19:55:16+08:00</created> 
  <author>
 <name></name> 
 <url>http://blog.roodo.com/nanhai/</url> 
 
</author> 
<dc:subject>【連橫合縱 ◎同流膜】</dc:subject> 
<summary type="text/html" mode="escaped">
<![CDATA[
&nbsp;11/20 Fri. 19:30&nbsp;free&nbsp;失聲祭29&nbsp;&nbsp;&nbsp;11/21 Sat. 19:30&nbsp;NT250&nbsp;黑色記憶人 + 跳天橋&nbsp;&nbsp;11/22&nbsp;Sun. 15:00&nbsp;free&nbsp;大野一雄-舞踏講座與體驗&nbsp;&nbsp;&nbsp;12/04&nbsp;Fri. 19:30 NT250&nbsp;北印度古典音樂&nbsp;&nbsp;12/11 Fri. 19:30&nbsp;free&nbsp;失聲祭30&nbsp;&nbsp;12/12 Sat.19:30&nbsp;NT250&nbsp;十九兩+盪在空中&nbsp;]]>
</summary> 
<content type="text/html" mode="escaped" xml:lang="zh-tw" xml:base="http://blog.roodo.com/nanhai/archives/10504233.html">
<![CDATA[
	<table border="0" cellspacing="0" cellpadding="0" width="100%"><tbody><tr><td style="background-position: 50% 50%" background="http://blog.roodo.com/nanhai/3ba29fd8.jpg"><table border="0" cellspacing="10" cellpadding="0" width="540" align="center" bgcolor="#f6f7f1"><tbody><tr><td width="160" valign="top"><font size="1">&nbsp;11/20 Fri. 19:30&nbsp;free<br />&nbsp;失聲祭29</font>&nbsp;<img src="http://blog.roodo.com/nanhai/3bc180f0.jpg" border="0" alt="0213-失聲祭Listen-20.jpg" vspace="5" width="160" height="120" align="left" /></td><td valign="top">&nbsp;</td><td width="160" valign="top"><font size="1">&nbsp;<font color="#333333">11/21 Sat. 19:30&nbsp;NT250<br />&nbsp;黑色記憶人 + 跳天橋</font></font><br /><img src="http://blog.roodo.com/nanhai/890e9286.jpg" border="0" alt="" vspace="5" width="160" height="120" align="left" /></td><td valign="top">&nbsp;</td><td width="160" valign="top"><font size="1">&nbsp;<font color="#333333">11/22&nbsp;Sun. 15:00&nbsp;free<br />&nbsp;大野一雄-舞踏講座與體驗</font><img src="http://blog.roodo.com/nanhai/8bca8b05.jpg" border="0" alt="" vspace="5" width="160" height="120" align="left" /></font></td></tr><tr><td><hr /></td><td>&nbsp;</td><td><hr /></td><td>&nbsp;</td><td><hr /></td></tr><tr><td valign="top"><font size="1">&nbsp;12/04&nbsp;Fri. 19:30 NT250<br />&nbsp;北印度古典音樂</font><img src="http://blog.roodo.com/nanhai/b3fe5357.jpg" border="0" alt="" vspace="5" width="160" height="120" align="left" /></td><td valign="top">&nbsp;</td><td valign="top"><font size="1">&nbsp;12/11 Fri. 19:30&nbsp;free<br />&nbsp;失聲祭30<br /></font><img src="http://blog.roodo.com/nanhai/3bc180f0.jpg" border="0" alt="0213-失聲祭Listen-20.jpg" vspace="5" width="160" height="120" align="left" /></td><td valign="top">&nbsp;</td><td valign="top"><font size="1">&nbsp;<font color="#333333"><font color="#000000">12/12 Sat.19:30&nbsp;NT250<br />&nbsp;十九兩+盪在空中</font>&nbsp;</font><br /></font><img src="http://blog.roodo.com/nanhai/790fc709.jpg" border="0" alt="" vspace="5" width="160" height="120" align="left" /></td></tr></tbody></table></td></tr></tbody></table>
	<a href="http://blog.roodo.com/nanhai/archives/10504233.html">(繼續閱讀...)</a>]]>
</content>
</entry> 
 <entry> 
 <title>【當期展覽】原生．剪紙花 (1120-1129)  </title> 
 <link rel="alternate" type="text/html" href="http://blog.roodo.com/nanhai/archives/10617465.html" /> 
 <modified>2009-11-21T15:13:52+08:00</modified> 
 <issued>2009-11-21T15:13:52+08:00</issued> 
 <id>tag:blog.roodo.com,2009://51348.10617465</id> 
 <created>2009-11-10T23:30:35+08:00</created> 
  <author>
 <name></name> 
 <url>http://blog.roodo.com/nanhai/</url> 
 
</author> 
<dc:subject>近期展覽／Exhibitions</dc:subject> 
<summary type="text/html" mode="escaped">
<![CDATA[
]]>
</summary> 
<content type="text/html" mode="escaped" xml:lang="zh-tw" xml:base="http://blog.roodo.com/nanhai/archives/10617465.html">
<![CDATA[
	<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/2ece9a96.jpg" border="0" alt="" width="520" height="220" /></div>
	<a href="http://blog.roodo.com/nanhai/archives/10617465.html">(繼續閱讀...)</a>]]>
</content>
</entry> 
 <entry> 
 <title>【近期展覽】移動人／Mobile Man (1218-0109)</title> 
 <link rel="alternate" type="text/html" href="http://blog.roodo.com/nanhai/archives/10746737.html" /> 
 <modified>2009-11-21T15:06:56+08:00</modified> 
 <issued>2009-11-21T15:06:56+08:00</issued> 
 <id>tag:blog.roodo.com,2009://51348.10746737</id> 
 <created>2009-11-09T21:07:33+08:00</created> 
  <author>
 <name></name> 
 <url>http://blog.roodo.com/nanhai/</url> 
 
</author> 
<dc:subject>近期展覽／Exhibitions</dc:subject> 
<summary type="text/html" mode="escaped">
<![CDATA[
]]>
</summary> 
<content type="text/html" mode="escaped" xml:lang="zh-tw" xml:base="http://blog.roodo.com/nanhai/archives/10746737.html">
<![CDATA[
	<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/10fb6a75.jpg" border="0" alt="" width="520" height="220" /></div>
	<a href="http://blog.roodo.com/nanhai/archives/10746737.html">(繼續閱讀...)</a>]]>
</content>
</entry> 
</feed>