<?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-電子報報／E-paper</title>
<link>http://blog.roodo.com/nanhai/archives/cat_640915.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_640915.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/10559341.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10559341.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10559341.html</guid>
	<category>電子報報／E-paper</category>
	<pubDate>Sun, 04 Oct 2009 00:00:01 +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/10559319.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10559319.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10559319.html</guid>
	<category>電子報報／E-paper</category>
	<pubDate>Sat, 03 Oct 2009 15:57:39 +0800</pubDate>
</item>
<item>
	<title>【創意市集】2009 第九屆牯嶺街書香創意市集 簡章</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/fc2f763d.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10559301.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10559301.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10559301.html</guid>
	<category>電子報報／E-paper</category>
	<pubDate>Fri, 02 Oct 2009 15:56:00 +0800</pubDate>
</item>
<item>
	<title>（十一月．十二月）連橫合縱同流膜</title>
	<description><![CDATA[
			&nbsp;11/06 Fri.19:30&nbsp;NT250&nbsp;北印度古典音樂&nbsp;&nbsp;&nbsp;11/13 Fri.19:30&nbsp;free&nbsp;前衛迴響 Erwin Stache&nbsp;&nbsp;11/14 Sat. 19:30&nbsp;NT250&nbsp;樸素未知 + 優雅逆轉&nbsp;&nbsp;&nbsp;11/15 Sun. 15:00&nbsp;free&nbsp;魔幻光影&amp;conint;電影沙龍&nbsp;&nbsp;11/20 Fri. 19:30&nbsp;free&nbsp;失聲祭29&nbsp;&nbsp;11/21 Sat. 19:30&nbsp;NT250&nbsp;黑色記憶人 + 跳天橋&nbsp;
		]]>
	</description>
	<content:encoded><![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/06 Fri.19:30&nbsp;NT250<br />&nbsp;北印度古典音樂</font>&nbsp;<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 width="160" valign="top"><font size="1">&nbsp;11/13 Fri.19:30&nbsp;free<br />&nbsp;前衛迴響 Erwin Stache</font><br /><img src="http://blog.roodo.com/nanhai/853506d2.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;11/14 Sat. 19:30&nbsp;NT250<br />&nbsp;樸素未知 + 優雅逆轉<img src="http://blog.roodo.com/nanhai/ee6531bd.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;11/15 Sun. 15:00&nbsp;free<br />&nbsp;魔幻光影&amp;conint;電影沙龍</font><img src="http://blog.roodo.com/nanhai/c38d2aea.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;11/20 Fri. 19:30&nbsp;free<br />&nbsp;失聲祭29<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">11/21 Sat. 19:30&nbsp;NT250<br />&nbsp;黑色記憶人 + 跳天橋&nbsp;</font><br /></font><img src="http://blog.roodo.com/nanhai/890e9286.jpg" border="0" alt="" vspace="5" width="160" height="120" align="left" /></td></tr></tbody></table></td></tr></tbody></table>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10559287.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10559287.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10559287.html</guid>
	<category>電子報報／E-paper</category>
	<pubDate>Thu, 01 Oct 2009 15:54:22 +0800</pubDate>
</item>
<item>
	<title>【創意市集】2009 第九屆牯嶺街書香創意市集 簡章</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<div style="text-align: center"><img src="http://blog.roodo.com/nanhai/fc2f763d.jpg" border="0" alt="" width="520" height="220" /></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10279245.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10279245.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10279245.html</guid>
	<category>電子報報／E-paper</category>
	<pubDate>Thu, 03 Sep 2009 23:47:26 +0800</pubDate>
</item>
<item>
	<title>【創意市集】預告　2　0　0　9　1　1　2　8　2　9</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/0c642d63.jpg"><div align="center"><img src="http://blog.roodo.com/nanhai/1ee8e8d3.png" border="0" alt="" width="540" height="220" /></div></td></tr></tbody></table>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/10180659.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/10180659.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/10180659.html</guid>
	<category>電子報報／E-paper</category>
	<pubDate>Wed, 02 Sep 2009 01:01:01 +0800</pubDate>
</item>
</channel>
</rss>