<HTML>
<HEAD>
<meta http-equiv=Content-type  content="text/html; charset=iso-8859-1">
   <!--META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=big5"-->

<TITLE>Mobilisation for the annual meeting jointly organised by WFTA and WTC in Kaohsiung, Taiwan on 12th~ 14th March 2004.</TITLE>

<style type="text/css">
A{font-weight: bold; text-decoration: underline;}
A:link{color: #aa00aa;}
A:hover{text-decoration: underline overline; background-color: yellow;}
A:visited{color: #3f988f;} /* was #E60000 */
A:active{color: #E60000; text-decoration: underline overline; background-color: yellow;}
</style>

</HEAD>
<BODY bgcolor=ffffff><a name=top></a>







<!--========( News Vertical Scroller , Part 1 + 2 below )==============-->
<!--========( News Vertical Scroller , Part 1 below )==============-->
<style>
.jsscroller{
	font-size : 18pt;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	color : #880000;
}
</style>
<!--========( News Vertical Scroller , Part 1 above )==============-->
<!--========( News Vertical Scroller , Part 2 below )==============-->
<center><table border=2 cellpadding=0 cellspacing=2><tr><td>
<script language="javascript">
/*
Output generated by TIWIN.NET on 27th Jan. 2004
*/

//Vertical Scroller v1.2- by Brian of www.ScriptAsylum.com
//Updated for bug fixes
//Visit JavaScript Kit (http://javascriptkit.com) for script

//ENTER CONTENT TO SCROLL BELOW.
var content='<center><b><i><span class=\"jsscroller\">Coming event....<BR><br>Mobilisation for the 2004 annual meeting <BR>jointly organised by WFTA and WTC<BR>in Kaohsiung, Taiwan <br>on 12th~ 14th March 2004.</span></i></b></center>';
// added <i></i> <center></center> above
// the above variable must be in same line, i.e. jsscroller\">Welcome to
// ==> "welcome to" cannot use ENTER to change new line

var boxheight=90;        // BACKGROUND BOX HEIGHT IN PIXELS. (was 175)
var boxwidth=600;         // BACKGROUND BOX WIDTH IN PIXELS.  (was 175, must enter width, NOT %)
var boxcolor="#c0d0c0";   // BACKGROUND BOX COLOR. (was c0c0c0)
var speed=100;             // SPEED OF SCROLL IN MILLISECONDS (1 SECOND=1000 MILLISECONDS).. was 50
var pixelstep=2;          // PIXELS "STEPS" PER REPITITION.
var godown=false;         // TOP TO BOTTOM=TRUE , BOTTOM TO TOP=FALSE

// DO NOT EDIT BEYOND THIS POINT

var outer,inner,elementheight,ref,refX,refY;
var w3c=(document.getElementById)?true:false;
var ns4=(document.layers)?true:false;
var ie4=(document.all && !w3c)?true:false;
var ie5=(document.all && w3c)?true:false;
var ns6=(w3c && navigator.appName.indexOf("Netscape")>=0)?true:false;
var txt='';
if(ns4){
txt+='<center><table cellpadding=0 cellspacing=0 border=0 height='+boxheight+' width='+boxwidth+'><tr><td>';
txt+='<ilayer name="ref" bgcolor="'+boxcolor+'" width='+boxwidth+' height='+boxheight+'></ilayer>';
txt+='</td></tr></table></center>'
txt+='<layer name="outer" bgcolor="'+boxcolor+'" visibility="hidden" width='+boxwidth+' height='+boxheight+'>';
txt+='<layer  name="inner"  width='+(boxwidth-4)+' height='+(boxheight-4)+' visibility="hidden" left="2" top="2" >'+content+'</layer>';
txt+='</layer>';
// added <center></center> for table (before/after) above!
}else{
txt+='<div  id="ref" style="position:relative; width:'+boxwidth+'; height:'+boxheight+'; background-color:'+boxcolor+';" ></div>';
txt+='<div  id="outer" style="position:absolute; width:'+boxwidth+'; height:'+boxheight+'; visibility:hidden; background-color:'+boxcolor+'; overflow:hidden" >';
txt+='<div  id="inner"  style="position:absolute; visibility:visible; left:2px; top:2px; width:'+(boxwidth-4)+'; overflow:hidden; cursor:default;">'+content+'</div>';
txt+='</div>';
// added within div, align=center x3 above! .... not-working! --> removed!
}
document.write(txt);

function getElHeight(el){
if(ns4)return (el.document.height)? el.document.height : el.clip.bottom-el.clip.top;
else if(ie4||ie5)return (el.style.height)? el.style.height : el.clientHeight;
else return (el.style.height)? parseInt(el.style.height):parseInt(el.offsetHeight);
}

function getPageLeft(el){
var x;
if(ns4)return el.pageX;
if(ie4||w3c){
x = 0;
while(el.offsetParent!=null){
x+=el.offsetLeft;
el=el.offsetParent;
}
x+=el.offsetLeft;
return x;
}}

function getPageTop(el){
var y;
if(ns4)return el.pageY;
if(ie4||w3c){
y=0;
while(el.offsetParent!=null){
y+=el.offsetTop;
el=el.offsetParent;
}
y+=el.offsetTop;
return y;
}}

function scrollbox(){
if(ns4){
inner.top+=(godown)? pixelstep: -pixelstep;
if(godown){
if(inner.top>boxheight)inner.top=-elementheight;
}else{
if(inner.top<2-elementheight)inner.top=boxheight+2;
}}else{
inner.style.top=parseInt(inner.style.top)+((godown)? pixelstep: -pixelstep)+'px';
if(godown){
if(parseInt(inner.style.top)>boxheight)inner.style.top=-elementheight+'px';
}else{
if(parseInt(inner.style.top)<2-elementheight)inner.style.top=boxheight+2+'px';
}}}

window.onresize=function(){
if(ns4)setTimeout('history.go(0)', 400);
else{
outer.style.left=getPageLeft(ref)+'px';
outer.style.top=getPageTop(ref)+'px';
}}

window.onload=function(){
outer=(ns4)?document.layers['outer']:(ie4)?document.all['outer']:document.getElementById('outer');
inner=(ns4)?outer.document.layers['inner']:(ie4)?document.all['inner']:document.getElementById('inner');
ref=(ns4)?document.layers['ref']:(ie4)?document.all['ref']:document.getElementById('ref');
elementheight=getElHeight(inner);
if(ns4){
outer.moveTo(getPageLeft(ref),getPageTop(ref));
outer.clip.width=boxwidth;
outer.clip.height=boxheight;
inner.top=(godown)? -elementheight : boxheight-2;
inner.clip.width=boxwidth-4;
inner.clip.height=elementheight;
outer.visibility="show";
inner.visibility="show";
}else{
outer.style.left=getPageLeft(ref)+'px';
outer.style.top=getPageTop(ref)+'px';
inner.style.top=((godown)? -elementheight : boxheight)+'px';
inner.style.clip='rect(0px, '+(boxwidth-4)+'px, '+(elementheight)+'px, 0px)';
outer.style.visibility="visible";
}
setInterval('scrollbox()',speed);
}
</script>
</td></tr></table></center>
<!--========( News Vertical Scroller , Part 2 above )==============-->
<!--========( News Vertical Scroller , Part 1 + 2 above )==============-->





<!--
<center>
<table width=600 border=0 cellpadding=0 cellspacing=0  bgcolor=#9999CC>
<tr><td>
-->
<!-- (TABLE FOR SPACE CONTROL BELOW) -->
<!--
<TABLE WIDTH=600 HEIGHT=4 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD WIDTH=600 HEIGHT=4></TD></TR></TABLE>
</td></tr>
</table>
</center>
-->

<!--
<center>
<table width=600 border=0 cellpadding=5 cellspacing=0  bgcolor=#D6DCFE><tr><td>
<FONT FACE="新細明體, 細明體, MingLiu" SIZE=3>本《邀請函》圖形檔，（From: 世界台灣同鄉會聯合會 and 世界台灣人大會）<br>
歡迎<a href=040312WFTAConventionWTC1of3Letter.gif target=_blank>下載</a>，並歡迎用 E-mail 傳閱！
</font><br>
</td></tr></table>
</center>
-->

<!--
<center>
<table width=600 border=0 cellpadding=0 cellspacing=0  bgcolor=#9999CC>
<tr><td>
-->
<!-- (TABLE FOR SPACE CONTROL BELOW) -->
<!--
<TABLE WIDTH=600 HEIGHT=4 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD WIDTH=600 HEIGHT=4></TD></TR></TABLE>
</td></tr>
</table>
</center>
-->


<center>
<br><br>
<img src=040312WFTAConventionWTC1of3Letter.gif border=0 width=550 height=750 alt="Inivitation from WFTA and WTC: Help President Chen Shui-bian in the coming election campaign in 2004 in order to widen the political reform in Taiwan!">
<br><br>
</center>


<br>
<hr noshade>
<br><br>


<!--
<center>
<table width=600 border=0 cellpadding=0 cellspacing=0  bgcolor=#9999CC>
<tr><td>
-->
<!-- (TABLE FOR SPACE CONTROL BELOW) -->
<!--
<TABLE WIDTH=600 HEIGHT=4 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD WIDTH=600 HEIGHT=4></TD></TR></TABLE>
</td></tr>
</table>
</center>
-->

<!--
<center>
<table width=600 border=0 cellpadding=5 cellspacing=0  bgcolor=#D6DCFE><tr><td>
<FONT FACE="新細明體, 細明體, MingLiu" SIZE=3>2004 年三月 12 ~ 14 日『世界台灣同鄉會聯合會（WFTA）』及『世界台灣人大會（WTC）』聯合年會《報名表》圖形檔，
歡迎<a href=040312WFTAConventionWTC2of3RegForm.gif target=_blank>下載</a>，並歡迎用 E-mail 傳閱！
</font><br>
</td></tr></table>
</center>
-->

<!--
<center>
<table width=600 border=0 cellpadding=0 cellspacing=0  bgcolor=#9999CC>
<tr><td>
-->
<!-- (TABLE FOR SPACE CONTROL BELOW) -->
<!--
<TABLE WIDTH=600 HEIGHT=4 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD WIDTH=600 HEIGHT=4></TD></TR></TABLE>
</td></tr>
</table>
</center>
-->


<center>
<br><br>
<img src=040312WFTAConventionWTC2of3RegForm.gif border=0 width=550 height=770 alt="The Registration Form of the coming Joint Annual Conference of the WFTA and WTC in Kaohsiung Taiwan in March 2004.">
<br><br>
</center>


<br>
<hr noshade>
<br><br>


<!--
<center>
<table width=600 border=0 cellpadding=0 cellspacing=0  bgcolor=#9999CC>
<tr><td>
-->
<!-- (TABLE FOR SPACE CONTROL BELOW) -->
<!--
<TABLE WIDTH=600 HEIGHT=4 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD WIDTH=600 HEIGHT=4></TD></TR></TABLE>
</td></tr>
</table>
</center>
-->

<!--
<center>
<table width=600 border=0 cellpadding=5 cellspacing=0  bgcolor=#D6DCFE><tr><td>
<FONT FACE="新細明體, 細明體, MingLiu" SIZE=3>2004 年三月 12 ~ 14 日『世界台灣同鄉會聯合會（WFTA）』及『世界台灣人大會（WTC）』聯合年會《報名費用，參考項目以及注意事項》圖形檔，
歡迎<a href=040312WFTAConventionWTC3of3RegRef.gif target=_blank>下載</a>，並歡迎用 E-mail 傳閱！
</font><br>
</td></tr></table>
</center>
-->

<!--
<center>
<table width=600 border=0 cellpadding=0 cellspacing=0  bgcolor=#9999CC>
<tr><td>
-->
<!-- (TABLE FOR SPACE CONTROL BELOW) -->
<!--
<TABLE WIDTH=600 HEIGHT=4 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD WIDTH=600 HEIGHT=4></TD></TR></TABLE>
</td></tr>
</table>
</center>
-->

<center>
<br><br>
<img src=040312WFTAConventionWTC3of3RegRef.gif border=0 width=550 height=810 alt="The Registration Fees and References of the coming Joint Annual Conference of the WFTA and WTC in Kaohsiung Taiwan in March 2004.">
<br><br>
</center>




<br>
<hr noshade>
<br>
<center>
<a href=040312WFTAConventionWTCInvitation2.shtml><font face="verdana,arial" size=4><b><i>View the above doc in Mandarin Taiwanese</i></b></font></a> &nbsp; &nbsp; &nbsp; 
<a href=#top><font face="verdana,arial" size=4><b><i>Go to TOP</i></b></font></a>
</center>
<br>
<hr noshade>





<center>
<!-- [ascad text counter below]-->
<FONT FACE="verdana,arial" SIZE="1" COLOR="b8bfb8"> <b><!--3092--></b> </FONT>
<!-- [ascad text counter above]-->

<!-- [axstracksys below]-->

 

<!-- [axstracksys above]-->
</center>

</BODY>
</HTML>
