ÿþ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN"> <html> <head> <title> Royal Thai Consulate-General </title> <script type="text/javascript"> <!-- var localisation = { 'de': { 'dow_n': ['Mo','Di','Mi','Do','Fr','Sa','So'], 'dow_name': ['Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag','Sonntag'], 'mon_name': ['Januar','Februar','M&auml;rz','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'], 'y_offset': 0 }, 'th': { 'dow_n': ['&#x0e08;&#x0e31;&#x0e19;&#x0e17;&#x0e23;&#x0e4c;','&#x0e2d;&#x0e31;&#x0e07;&#x0e04;&#x0e32;&#x0e23;','&#x0e1e;&#x0e38;&#x0e18;','&#x0e1e;&#x0e24;&#x0e2b;&#x0e31;&#x0e2a;&#x0e2f;','&#x0e28;&#x0e38;&#x0e01;&#x0e23;&#x0e4c;','&#x0e40;&#x0e2a;&#x0e32;&#x0e23;&#x0e4c;','&#x0e2d;&#x0e32;&#x0e17;&#x0e34;&#x0e15;&#x0e22;&#x0e4c;'], 'dow_name': ['&#x0e08;&#x0e31;&#x0e19;&#x0e17;&#x0e23;&#x0e4c;','&#x0e2d;&#x0e31;&#x0e07;&#x0e04;&#x0e32;&#x0e23;','&#x0e1e;&#x0e38;&#x0e18;','&#x0e1e;&#x0e24;&#x0e2b;&#x0e31;&#x0e2a;&#x0e2f;','&#x0e28;&#x0e38;&#x0e01;&#x0e23;&#x0e4c;','&#x0e40;&#x0e2a;&#x0e32;&#x0e23;&#x0e4c;','&#x0e2d;&#x0e32;&#x0e17;&#x0e34;&#x0e15;&#x0e22;&#x0e4c;'], 'mon_name': ['&#x0e21;&#x0e01;&#x0e23;&#x0e32;&#x0e04;&#x0e21;','&#x0e01;&#x0e38;&#x0e21;&#x0e20;&#x0e32;&#x0e1e;&#x0e31;&#x0e19;&#x0e18;&#x0e4c;','&#x0e21;&#x0e35;&#x0e19;&#x0e32;&#x0e04;&#x0e21;','&#x0e40;&#x0e21;&#x0e29;&#x0e32;&#x0e22;&#x0e19;','&#x0e1e;&#x0e24;&#x0e29;&#x0e20;&#x0e32;&#x0e04;&#x0e21;','&#x0e21;&#x0e34;&#x0e16;&#x0e38;&#x0e19;&#x0e32;&#x0e22;&#x0e19;','&#x0e01;&#x0e23;&#x0e01;&#x0e0e;&#x0e32;&#x0e04;&#x0e21;','&#x0e2a;&#x0e34;&#x0e07;&#x0e2b;&#x0e32;&#x0e04;&#x0e21;','&#x0e01;&#x0e31;&#x0e19;&#x0e22;&#x0e32;&#x0e22;&#x0e19;','&#x0e15;&#x0e38;&#x0e25;&#x0e32;&#x0e04;&#x0e21;','&#x0e1e;&#x0e24;&#x0e28;&#x0e08;&#x0e34;&#x0e01;&#x0e32;&#x0e22;&#x0e19;','&#x0e18;&#x0e31;&#x0e19;&#x0e27;&#x0e32;&#x0e04;&#x0e21;'], 'y_offset': 543 }, 'en': { 'dow_n': ['Mon','Tue','Wed','Thu','Fri','Sat','Sun'], 'dow_name': ['Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'], 'mon_name': ['January','February','March','April','May','June','July','August','September','October','November','December'], 'y_offset': 0 } }; var today = new Date(); function cal_build_calendar_html(id,loc,yy,mm) { var calendar = new Date(yy,mm,1); var dow_offset = calendar.getDay() - 1; calendar.setTime(calendar.getTime()- dow_offset * 86400000); var txt = cal_build_month_prefix(id,loc,yy,mm); for (var w = 0; w < 6; ++w) { //alert('cal_build_calendar_html - 3') txt += cal_build_week_prefix(id,loc,yy,mm,w); for (var d = 0; d < 7; ++d) { //alert('cal_build_calendar_html - a ' + calendar.toString()) txt += cal_build_day(id,loc,yy,mm,d,calendar); //alert('cal_build_calendar_html - b ' + calendar.toString()) calendar.setTime(calendar.getTime()+ 86400000); //alert('cal_build_calendar_html - c ' + calendar.toString()) } //alert('cal_build_calendar_html - 5') txt += cal_build_week_postfix(id,loc,yy,mm,w); if (calendar.getMonth() > mm) { break; } } txt += cal_build_month_postfix(id,loc,yy,mm); //alert('cal_build_calendar_html - 7') return txt; } function cal_build_month_prefix(id,loc,yy,mm) { var txt = "<table class='cal'><tr class='cal_mon'>"; var pyy=yy; var pmm=mm; if (!mm) {--pyy; pmm=12;} var nyy=yy; var nmm=mm+2; if (mm == 11) {++nyy; nmm=1;} var local = localisation[loc]; var mon_name = local['mon_name']; var dow_name = local['dow_n']; var yr_offs = local['y_offset']; txt += "<td class='cal_prev'><a href='javascript:cal_build_calendar(\""+id+"\",\""+loc+"\","+pyy+","+pmm+")'> < </a></td>"; txt += "<td colspan='5'>" + mon_name[mm]+ " " + (yy+yr_offs) + "</td>" txt += "<td class='cal_next'><a href='javascript:cal_build_calendar(\""+id+"\",\""+loc+"\","+nyy+","+nmm+")'> > </a></td>"; txt += "</tr>"; txt += "<tr class='cal_dow'>"; for (var d = 0; d < 7; ++d) { txt += "<td class='cal_dow'>" + dow_name[d] + "</td>"; } txt += "</tr>\n"; return txt; } function cal_build_month_postfix(id,loc,yy,mm) { var txt = "</table>\n"; return txt; } function cal_build_week_prefix(id,loc,yy,mm,ww) { var txt = "<tr class='cal_week'>"; return txt; } function cal_build_week_postfix(id,loc,yy,mm,ww) { var txt = "</tr>\n"; return txt; } function cal_build_day(id,loc,yy,mm,dow,cal) { var txt = ""; var suffix = ""; var nota = ""; if (cal.getMonth() != mm) { //txt += "<td class='cal_xxx"+suffix+"'>"+cal.getDate()+"</td>"; txt += "<td class='cal_xxx"+suffix+"'> &nbsp; </td>"; } else { //var chked = cal_chk_marker(id,cal) //if (chked) { suffix = "_mark' onmouseover='cal_tip(\""+id+"\",\""+chked+"\")' onmouseout='cal_untip("+id+")"; } var chkr = cal_chk_marker(id,cal); var chked = chkr ? chkr.innerHTML : ""; var chktp = (chkr && chkr.type) ? chkr.type : "mark"; if (cal.toDateString() == today.toDateString()) { suffix = '_today'; } if (chked != "") { suffix = "_"+chktp; nota = "' title='"+chked; } if (dow == 6) txt += "<td class='cal_sun"+suffix+nota+"'>"+cal.getDate()+"</td>"; else if (dow == 5) txt += "<td class='cal_sat"+suffix+nota+"'>"+cal.getDate()+"</td>"; else txt += "<td class='cal_day"+suffix+nota+"'>"+cal.getDate()+"</td>"; } return txt; } function cal_mk_date_string(cal,gen) { var caltxt = ""; if (cal.getDate() < 10) caltxt += "0"; caltxt += cal.getDate(); caltxt += "."; if (cal.getMonth() < 9) caltxt += "0"; caltxt += (1+cal.getMonth()); caltxt += "."; if (gen) caltxt += "0000"; else caltxt += cal.getFullYear(); return caltxt; } function cal_chk_marker(id,cal) { var caltxt = cal_mk_date_string(cal, 0); var x = document.getElementById(id+"_"+caltxt); //if (x) return caltxt; if (x) return x; return 0; } function cal_get_marker(id,caltxt) { var x = document.getElementById(id+"_"+caltxt); if (x) return x; return ""; } function cal_build_calendar(id,loc,yy,mm) { if ((yy == 0) && (mm == 0)) { var dat = new Date(); yy = dat.getFullYear(); mm = dat.getMonth() + 1; } if (mm < 1 || mm > 12) { alert('month must be between 1 and 12'); return false; } if (yy <= 1910 || yy >= 2039) { alert('year must be after 1910 and before 2040'); return false; } if (!document.getElementById(id)) { alert("element " + id + " not found"); return; } var txt = cal_build_calendar_html(id,loc,yy,mm-1); document.getElementById(id).innerHTML = txt; //document.getElementById(id).innerHTML = "test test test"; //alert(txt); } function dig2(x) { //var y = '00' + x; //return y.substr( -3 ); //if (x >= 10) { return x; } if (x < 10) { return '0' + x; } return x; } function cal_datetime_now(loc) { var local = localisation[loc]; var mon_name = local['mon_name']; var dow_n = local['dow_n']; var dow_name = local['dow_name']; var yr_offs = local['y_offset']; var td = new Date(); if (loc == 'en') { return dow_name[(td.getDay()+6)%7] + ', ' + td.getDate() + '. ' + mon_name[td.getMonth()] + ' ' + td.getFullYear() + ', ' + td.getHours() + ":" + dig2(td.getMinutes()) + ":" + dig2(td.getSeconds()); } if (loc == 'th') { return dow_name[(td.getDay()+6)%7] + ' ' + td.getDate() + ' ' + mon_name[td.getMonth()] + ' ' + (td.getFullYear()+yr_offs) + ' (' + dig2(td.getHours()) + ":" + dig2(td.getMinutes()) + ":" + dig2(td.getSeconds()) + ')'; } if (loc == 'de') { return dow_name[(td.getDay()+6)%7] + ', ' + td.getDate() + '. ' + mon_name[td.getMonth()] + ' ' + td.getFullYear() + ', ' + td.getHours() + ":" + dig2(td.getMinutes()) + ":" + dig2(td.getSeconds()); } } function cal_embed_datetime_now(element,loc) { if (element) element.innerHTML = cal_datetime_now(loc); } function cal_embed_datetime_now_into(id,loc) { cal_embed_datetime_now(document.getElementById(id),loc); if (navigator.appName != 'Microsoft Internet Explorer') { // please don't ask me, why IE is having problems with that... window.setTimeout('cal_embed_datetime_now_into(\''+id+'\',\''+loc+'\')'); } } function cal_date_now(loc) { var local = localisation[loc]; var mon_name = local['mon_name']; var dow_n = local['dow_n']; var dow_name = local['dow_name']; var yr_offs = local['y_offset']; var td = new Date(); if (loc == 'en') { return dow_name[(td.getDay()+6)%7] + ', ' + td.getDate() + '. ' + mon_name[td.getMonth()] + ' ' + td.getFullYear() ; } if (loc == 'th') { return dow_name[(td.getDay()+6)%7] + ' ' + td.getDate() + ' ' + mon_name[td.getMonth()] + ' ' + (td.getFullYear()+yr_offs) ; } if (loc == 'de') { return dow_name[(td.getDay()+6)%7] + ', ' + td.getDate() + '. ' + mon_name[td.getMonth()] + ' ' + td.getFullYear() ; } } function cal_embed_date_now(element,loc) { if (element) element.innerHTML = cal_date_now(loc); } function cal_embed_date_now_into(id,loc) { cal_embed_date_now(document.getElementById(id),loc); } //--> </script> <script type="text/javascript" src="time.js"> </script> <script type="text/javascript" language="JavaScript" ><!-- function embed_date(element) { var d = new Date(); //element.innerHTML = d.getFullYear() + "-" + d.getMonth() + "-" + d.getDate() + " " + d.getHours() + ":" + d.getMinutes(); // months = ["Januar", "Februar", "M&auml;rz", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"]; //element.innerHTML = d.getDate() + "-" + months[d.getMonth()] + "-" + d.getFullYear() + " " + d.getHours() + ":" + d.getMinutes(); element.innerHTML = d.toLocaleString() } //--> </script> <script type="text/javascript"> /*Example message arrays for the two demo scrollers*/ var pausecontent=new Array() pausecontent[0]='<img border=0 src="http://www.thaigeneralkonsulat.de/foto/badhomburg2011/rollen/1.jpg">' pausecontent[1]='<img border=0 src="http://www.thaigeneralkonsulat.de/foto/badhomburg2011/rollen/2.jpg">' pausecontent[2]='<img border=0 src="http://www.thaigeneralkonsulat.de/foto/badhomburg2011/rollen/3.jpg">' pausecontent[3]='<img border=0 src="http://www.thaigeneralkonsulat.de/foto/badhomburg2011/rollen/20.jpg">' pausecontent[4]='<img border=0 src="http://www.thaigeneralkonsulat.de/foto/badhomburg2011/rollen/28.jpg">' pausecontent[5]='<img border=0 src="http://www.thaigeneralkonsulat.de/foto/badhomburg2011/rollen/33.jpg">' pausecontent[6]='<img border=0 src="http://www.thaigeneralkonsulat.de/foto/badhomburg2011/rollen/65.jpg">' </script> <script type="text/javascript"> /*********************************************** * Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ function pausescroller(content, divId, divClass, delay){ this.content=content //message array content this.tickerid=divId //ID of ticker div to display information this.delay=delay //Delay between msg change, in miliseconds. this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is) this.hiddendivpointer=1 //index of message array for hidden div document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>') var scrollerinstance=this if (window.addEventListener) //run onload in DOM2 browsers window.addEventListener("load", function(){scrollerinstance.initialize()}, false) else if (window.attachEvent) //run onload in IE5.5+ window.attachEvent("onload", function(){scrollerinstance.initialize()}) else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec setTimeout(function(){scrollerinstance.initialize()}, 500) } // ------------------------------------------------------------------- // initialize()- Initialize scroller method. // -Get div objects, set initial positions, start up down animation // ------------------------------------------------------------------- pausescroller.prototype.initialize=function(){ this.tickerdiv=document.getElementById(this.tickerid) this.visiblediv=document.getElementById(this.tickerid+"1") this.hiddendiv=document.getElementById(this.tickerid+"2") this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv)) //set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2) this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px" this.getinline(this.visiblediv, this.hiddendiv) this.hiddendiv.style.visibility="visible" var scrollerinstance=this document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1} document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0} if (window.attachEvent) //Clean up loose references in IE window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null}) setTimeout(function(){scrollerinstance.animateup()}, this.delay) } // ------------------------------------------------------------------- // animateup()- Move the two inner divs of the scroller up and in sync // ------------------------------------------------------------------- pausescroller.prototype.animateup=function(){ var scrollerinstance=this if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){ this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px" this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px" setTimeout(function(){scrollerinstance.animateup()}, 50) } else{ this.getinline(this.hiddendiv, this.visiblediv) this.swapdivs() setTimeout(function(){scrollerinstance.setmessage()}, this.delay) } } // ------------------------------------------------------------------- // swapdivs()- Swap between which is the visible and which is the hidden div // ------------------------------------------------------------------- pausescroller.prototype.swapdivs=function(){ var tempcontainer=this.visiblediv this.visiblediv=this.hiddendiv this.hiddendiv=tempcontainer } pausescroller.prototype.getinline=function(div1, div2){ div1.style.top=this.visibledivtop+"px" div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px" } // ------------------------------------------------------------------- // setmessage()- Populate the hidden div with the next message before it's visible // ------------------------------------------------------------------- pausescroller.prototype.setmessage=function(){ var scrollerinstance=this if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it) setTimeout(function(){scrollerinstance.setmessage()}, 100) else{ var i=this.hiddendivpointer var ceiling=this.content.length this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1 this.hiddendiv.innerHTML=this.content[this.hiddendivpointer] this.animateup() } } pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any if (tickerobj.currentStyle) return tickerobj.currentStyle["paddingTop"] else if (window.getComputedStyle) //if DOM2 return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top") else return 0 } </script> <style type="text/css"> <!-- #pscroller1{ width: 600px; height: 235px; border: 0px; padding: 0px; background-color: #efefff; } body { font-family:Verdana, Tahoma; font-size: 11pt; } #hdr_colorline1 { position: static; top: 0px; left: 0px; height: 3px; width: 900px; background-color: #ffffff; } #hdr_colorline2 { position: static; top: 0px; left: 0px; height: 3px; width: 900px; background-color: #ff79ee; } #hdr_colorline3 { position: static; top: 0px; left: 0px; height: 5px; width: 900px; background-color: #8506aa; } div#all { width: 1050px; margin: 0 auto; /* standardkonforme horizontale Zentrierung */ text-align: left; background-color: #efeff0; } div#header { left: 0; width: 100%; } div#info { width: 350px; float: right; margin-right: 10px; } div#contents { left: 0; width: 640px; margin-left: 5px; } div#footer { left: 0; width: 100%; clear: right; } a.toplink { font-family: Verdana, Tahoma; font-size: 10pt; font-weight: normal; color: #000060; text-decoration: none; } a:link { text-decoration:none } a:visited { text-decoration:none } a:hover { text-decoration:underline } a:active { text-decoration:underline } a:focus { text-decoration:underline } .inf_gap { height: 0.5em; padding: 0; margin: 0; } .inf_header { position: static; top: 10px; width:338px; padding:3px; margin:0px; font-weight:bold; font-family:Verdana, Tahoma; font-size: 11pt; background-color: #83A6E4; border:3px solid #83A6E4; text-align:left; color: #ffffff; } .inf_body { position: static; top: 0px; width:338px; padding:3px; margin:0px; border:3px solid #83A6E4; } .cnt_header_b { position: static; top: 10px; width: 660px; padding: 3px; margin: 0px; font-weight:bold; font-family:Verdana, Tahoma; font-size: 11pt; background-color: #B1C8F1; border:1px solid #B1C8F1; text-align:left; color: #002B77; } .cnt_body_b { position: static; top: 0px; width: 656px; padding: 5px; margin: 0px; border:1px solid #b1c8f1; } .cnt_header_s { position: static; top: 10px; /*width: 320px;*/ width: 660px; padding: 3px; margin: 0px; font-weight:bold; font-family:Verdana, Tahoma; font-size: 11pt; background-color: #B1C8F1; border:1px solid #B1C8F1; text-align:left; color: #002B77; } .cnt_body_s { position: static; top: 0px; /*width: 316px;*/ width: 656px; padding: 5px; margin: 0px; background-color: #E8E5E5; border:1px solid #E8E5E5; } .cnt_body_s1 { position: static; top: 0px; /*width: 316px;*/ width: 656px; padding: 5px; margin: 0px; background-color: #E8E5E5; border:1px solid #E8E5E5; } .dir_gap { height: 0.2em; padding: 0; margin: 0; } /* .dir_crc1 { position: static; top: 0px; width: 320px; padding: 5px; margin: 0px; float: left; } .dir_crc2 { position: static; top: 0px; width: 320px; padding: 5px; margin: 0px; float: right; } */ td { font-size: 10pt; } table.cal { background-color: #cccccc; text-align: right; font-size: 12pt; width: 280px; height: 230px; } tr.cal_mon { text-align: center; background-color: #999999; } td.cal_mon { text-align: center; } tr.cal_dow { background-color: #aaaaaa; } td.cal_dow { width: 40px; font-size:10pt; text-align:center; } tr.cal_week { } td.cal_xxx { } td.cal_day { background-color: #dddddd; } td.cal_day_mark { background-color: #FF003C; font-weight: bold; } td.cal_day_spc { background-color: #FCFF01; font-weight: bold; } td.cal_day_free { background-color: #FF003C; font-weight: bold; } td.cal_day_today { background-color: blue; } td.cal_day_mark_today { background-color: blue; font-weight: bold; } td.cal_sat { background-color: #aaaaaa; } td.cal_sat_mark { background-color: #aaaaaa; font-weight: bold; } td.cal_sat_spc { background-color: #FCFF01; font-weight: bold; } td.cal_sat_today { background-color: blue; } td.cal_sat_mark_today { background-color: blue; font-weight: bold; } td.cal_sun { background-color: #aaaaaa; } td.cal_sun_mark { background-color: #aaaaaa; font-weight: bold; } td.cal_sun_today { background-color: #aaaaaa; background-color: blue; } td.cal_sun_mark_today { background-color: blue; font-weight: bold; } --> </style> </head> <body bgcolor="#d1dcf0" onload="cal_embed_date_now_into('ausgabefeld','th'); cal_build_calendar('calendar','th',0,0);"> <div id="all"> <!-- ________________________________________________________________ --> <!-- ____________________ SECTION #1 - HEADER START _________________ --> <div id="header"> <img border="0" src="http://www.thaigeneralkonsulat.de/bar/slide.gif"><img border="0" src="http://www.thaigeneralkonsulat.de/bar/th/head4.png"> <table width="100%"> <tr> <td colspan=2 width="30%" valign="top" rowspan="4" style="margin-bottom: 1px;"> <a class="toplink" href="http://www.thaigeneralkonsulat.de/cgi-bin/epass/index.cgi"> <img border="0" src="http://www.thaigeneralkonsulat.de/bar/th/epass.png"> </a> </td> <!--marquee direction=up scrollAmount=1 style="height: 20px; width: 250px; font-family:Verdana, Arial, Tahoma, Helvetica; font-size: 10pt; color: #d30544; border:1px solid #b1c8f1;"> <a href="http://amazing-thailand.bad-homburg.de/web/de/start/index.htm" target="_top"> </marquee--> </td> <td width="20%"><a class="toplink" href="./main/index.html">I-!9%1H'D</a></td> <td width="25%"><a class="toplink" href="./de/main/feiertage_2011.pdf">'1+"8#2 2#5 2555</a></td> <td width="25%"><a class="toplink" href="http://www.thaigeneralkonsulat.de/services/mobil/2011/index_th.html">*8%*1 # 2554</a> </td> </tr> <tr> <!--td width="25%"></td--> <td><a class="toplink" href="./consular/index.html">H2"*8%: #42#2*8%</a></td> <td><a class="toplink" href="./form/index.html">A-#L!3#I-2*8%</a></td> <td><a class="toplink" href="../foto/index.html">+I- 2</a></td> </tr> <tr> <!--td width="25%"></td--> <td><a class="toplink" href="http://www.thaigeneralkonsulat.de/handel/index.html" target="_top">H2"24 "L</a></td> <td><a class="toplink" href="./main/contact.html">4H--I-!9%*8%</a></td> <td><a class="toplink" href="../faq/index.html">2!--</a></td> </tr> <tr> <!--td></td--> <td><a class="toplink" href="http://www.thaigeneralkonsulat.de/investment/index.html" target="_top">H2"2#%8</a></td> <td><a class="toplink" href="./link/index.html">@'GD L*31 </a></td> <td><a class="toplink" href="./main/impressum.html">3*'*44L</a></td> </tr> </table> <hr style="color: #DDDDDD;" size="3"> <table width="100%"> <tr> <td width="35%"> <span style="font-family:Verdana, Arial, Tahoma, Helvetica; font-size: 11pt; color: #002B77"> <b>"45I-#1</b> <div id="ausgabefeld" style="font-family: Verdana, Arial, Tahoma; font-size: 11pt;"> </div> <iframe src="http://www.schulferien.org/Uhrzeit/uhrzeit_partner.html?size=10&amp;ccolor=333399&amp;bgcolor=CCCCCC" name="Uhrframe" width="72" height="17" align="left" scrolling="no" marginheight="0" marginwidth="0" frameborder="0"></iframe> <font face="Verdana, Arial, Helvetica, sans-serif"> <a href="http://www.schulferien.org/Uhrzeit/uhrzeit.html" style="color:#333399; font-size:7pt"></a></font> </span> </td> <td> <form method="GET" action="http://www.google.com/search" target="_blank"> <a href="http://www.google.com/" target="_blank"><img align="left" src="http://www.google.com/logos/Logo_40wht.gif" border="0" alt="Google" width="75" height="25"></a> <input type="text" name="q" maxlength="255" size="40"> <input type="submit" name="submit" value="Suche"> <input type="hidden" name="ie" value="utf-8"> <input type="hidden" name="oe" value="utf-8"> </form> </td> <td> <p align="right"> <a class="toplink" href="http://www.thaigeneralkonsulat.de/index.html"> <img border="0" src="http://www.thaigeneralkonsulat.de/bar/deutsch.gif"> <span style="font-family: Tahoma; font-size: 12pt;">Deutsch</span></a></p> </td> </tr> </table> <hr style="color: #DDDDDD;" size="8"> </div> <!-- ____________________ SECTION #1 - HEADER END ___________________ --> <!-- ________________________________________________________________ --> <!-- ____________________ SECTION #2 - PERMANENT INFO START _________ --> <div id="info"> <div class="inf_gap"></div> <a href="http://www.mfa.go.th/royalweb" target="_top"><img src="http://www.thaigeneralkonsulat.de/foto/father1.jpg" border="0"></a> <div class="inf_gap"></div> <a href="http://www.princemahidolaward.org/index.en.php" target="_top"><img src="http://www.thaigeneralkonsulat.de/foto/mahidol.gif" border="0"></a> <div class="inf_gap"></div> <a href="http://www.floodthailand.net/" target="_top"><img src="http://www.thaigeneralkonsulat.de/news/hochwasser.jpg" border="0"></a> <div class="inf_gap"></div> <a href="http://www.thaigeneralkonsulat.de/news/150/logo_th.jpg"><img border="0" src="http://www.thaigeneralkonsulat.de/news/150/logo_th1.jpg"> <div class="inf_gap"></div> <div class="inf_header"> <b>*3#-1+!2"+1*7-@42-4@%G#-4*L <br>(-5-2*-#L)</b> </div> <div class="inf_body" style="text-align:left;"> <center> <a href="http://www.thaigeneralkonsulat.de/cgi-bin/epass/index.cgi" target="_top"> <img src="http://www.thaigeneralkonsulat.de/bar/epass.gif" border="0"></a></center> <ul type="square" style="margin-left: 15px; margin-top: 8px;"> <li style="margin-top: 6px"> <a href="http://www.thaigeneralkonsulat.de/cgi-bin/epass/index.cgi" target="_top"> Zur Terminreservierung - @I2*9H#0*3#-1+!2"+1*7-@42-4@%G#-4*L (-5-2*-#L)</a> <li style="margin-top: 6px"> <a href="http://www.thaigeneralkonsulat.de/de/form/epass.pdf" target="_top"> Antragsformular f&uuml;r E-Pass - 3#I--+1*7-@42-4@%G#-4*L</a> <li style="margin-top: 6px"> <a href="http://www.thaigeneralkonsulat.de/th/consular/epass.html">2#@#5"!@-*2#*3+#1+1*7-@42-4@%G#-4*L</a> <li style="margin-top: 6px"> <a href="http://www.thaigeneralkonsulat.de/de/consular/epass.html">Vorbereitung von Unterlagen f&uuml;r E-Pass</a> </ul> </div> <div class="inf_gap"></div> <div class="inf_header"> <b>44'1+"8A%04##!</b> </div> <div class="inf_body" style="text-align:center;"> <table> <tr> <td class="textText1"> 44A*<a href="../de/main/feiertage_2011.pdf">'1+"8#2 2##035 .(. 2554</a> (*5A) A%04##! (*5@+%7-) <p></p> </td> </tr> <tr> <td class="textText1"> <center> <div id="calendar"> <!-- Calendar will be placed here --> </div> <div id="calendar_markers" style="visibility: hidden; display:none;"> <div id="calendar_02.01.2012" type="free"> @"'16I5C+!H</div> <div id="calendar_07.03.2012" type="free"> '1!29 2</div> <div id="calendar_06.04.2012" type="free"> '11#5 / '1#0@" 9#4*L@I2#9#6D!I2@</div> <div id="calendar_09.04.2012" type="free"> '1*!B  #0@" 9#4*L@I2#%17#0 !L</div> <div id="calendar_13.04.2012" type="free"> '1*#2L</div> <div id="calendar_07.05.2012" type="free"> @ "'1 1#!% </div> <div id="calendar_09.05.2012" type="free"> '17 !% </div> <div id="calendar_17.05.2012" type="free"> Ascension Day - '1*31 2(2*2#4*L </div> <div id="calendar_28.05.2012" type="free"> Whit Monday - '1*31 2(2*2#4*L </div> <div id="calendar_04.06.2012" type="free"> '1'4*29 2</div> <div id="calendar_07.06.2012" type="free"> Fronleichnam: Feiertag </div> <div id="calendar_03.08.2012" type="free"> '1@I2##)2 </div> <div id="calendar_13.08.2012" type="free"> '1+"8 @ "'1@ %4!#0 !##)2 *!@G#02@I2/ #0#!#2 452</div> <div id="calendar_03.10.2012" type="free"> '1 24@"-#!1 </div> <div id="calendar_23.10.2012" type="free"> '14"!+2#2  </div> <div id="calendar_05.12.2012" type="free"> '1@ %4!#0 !##)2 #02*!@G#0@I2-"9H+1'</div> <div id="calendar_10.12.2012" type="free"> '1#0#2 2#1##!9 </div> <div id="calendar_25.12.2012" type="free"> '1#4*L!2* </div> <div id="calendar_26.12.2012" type="free"> '1#4*L!2* </div> <div id="calendar_31.12.2012" type="free"> '1*HI2"5@H2 </div> <!--div id="calendar_12.03.2011" type="spc">*8%*1 #  @!7- Eschweiler (Aachen)</div> <!--div id="calendar_24.04.2010" type="spc">*8%*1 #  @!7- Stuttgart</div> <div id="calendar_22.05.2010" type="spc">*8%*1 #  @!7- N&uuml;rnberg</div> <div id="calendar_19.06.2010" type="spc">*8%*1 #  @!7- M&uuml;lheim an der Ruhr</div> <div id="calendar_26.06.2010" type="spc">*8%*1 #  @!7- M&uuml;nchen</div> <div id="calendar_10.07.2010" type="spc">*8%*1 #  @!7- Bielefeld</div> <div id="calendar_17.07.2010" type="spc">*8%*1 #  @!7- Hausach</div> <div id="calendar_14.08.2010" type="spc">*8%*1 #  @!7- Endingen</div--> </div> </center> </td> </tr> <tr><td><p>&nbsp;</p></td></tr> <tr><td></td></tr> </table> </div> <div class="inf_gap"></div> <a href="http://www.thaigeneralkonsulat.de/wahl/index.html"><img src="http://www.thaigeneralkonsulat.de/wahl/wahllokal1.jpg" border="0"></a> <div class="inf_gap"></div> <a href="http://www.thailandtoday.org" target="_top"><img src="http://www.thaigeneralkonsulat.de/foto/thailandtoday.jpg" border="0"></a> <div class="inf_gap"></div> <a href="http://www.thailandbranding.org" target="_top"><img src="http://www.thaigeneralkonsulat.de/foto/thailand.jpg" border="0"></a> <div class="inf_gap"></div> <div class="inf_header"> <b>(9"LI-!9%</b> </div> <div class="inf_body" style="text-align:left;"> <table> <tr> <td colspan="3" class="textText1"> <b>-1#2A%@%5H"@4#2H2#0@(</b> </td> </tr> <tr> <td class="textText1"> <a href="http://www.bot.or.th/thai/statistics/financialmarkets/exchangerate/_layouts/Application/ExchangeRate/ExchangeRate.aspx" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/bot.jpg" border="0"></a> </td> <td width="2"></td> <td class="textText2"> <a href="http://www.bot.or.th/thai/statistics/financialmarkets/exchangerate/_layouts/Application/ExchangeRate/ExchangeRate.aspx" target="_top"> -1#2A%@%5H"22#A+H#0@(D" </a> </td> </tr> <tr> <td class="textText1"> <a href="http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/ezb.jpg" border="0"></a> </td> <td width="2"></td> <td class="textText2"> <a href="http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html" target="_top"> -1#2A%@%5H"22#%2"89B# </a> </td> </tr> </table> <hr> <!-- ======================= --> <table> <tr> <td colspan="3" class="textText1"> <b>"2#L-22(</b> </td> </tr> <tr><td></td></tr> <tr><td></td></tr> <tr> <td class="textText1"> <a href="http://www.wetter.de/" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/wd.gif" border="0"></a> </td> <td width="2px;"></td> <td class="textText2"> <a href="http://www.wetter.de" target="_top"> "2#L-22(C@"-#!5</a> </a> </td> </tr> <tr> <td class="textText1"> <a href="http://www.dwd.de" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/dw.jpg" border="0"></a> </td> <td width="2px;"></td> <td class="textText2"> <a href="http://www.dwd.de" target="_top"> *312-884"!'4"2@"-#!1</a> </a> </td> </tr> <tr> <td class="textText1"> <a href="http://www.tmd.go.th" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/tmd.jpg" border="0"></a> </td> <td width="2px;"></td> <td class="textText2"> <a href="http://www.tmd.go.th" target="_top"> #!-884"!'4"2D" </a> </a> </td> </tr> </table> <hr> <table> <tr> <td colspan="3" class="textText1"> <b>H2'*2#%H2*82#0@(D"</b> </td> </tr> <tr><td></td></tr> <tr><td></td></tr> <tr> <td class="textText1"> <a href="http://www.thaigov.go.th/index.aspx?pageid=451&parent=0" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/tg.jpg" border="0"></a> </td> <td width="2px;"></td> <td class="textText2"> <a href="http://www.thaigov.go.th/index.aspx?pageid=451&parent=0" target="_top"> H2'#12%D"</a> </a> </td> </tr> <tr> <td class="textText1"> <a href="http://www.mfa.go.th/web/2705.php" target="_top"> <img src="../services/mfa.gif" border="0"></a> </td> <td width="2px;"></td> <td class="textText2"> <a href="http://www.mfa.go.th/web/2705.php" target="_top"> (9"LI-!9%H2'*2# #0#'2#H2#0@(</a> </a> </td> </tr> <tr> <td class="textText1"> <a href="http://www.mfa.go.th/web/2653.php" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/radio.jpg" border="0"></a> </td> <td width="2px;"></td> <td class="textText2"> <a href="http://www.mfa.go.th/web/2653.php" target="_top"> #11H2'*2#2<b>*25'4"8*#2 #!"L #0#'2#H2#0@(</b></a> </a> </td> </tr> <tr> <td class="textText1"> <a href="http://thainews.prd.go.th" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/nnt.jpg" border="0"></a> </td> <td width="2px;"></td> <td class="textText2"> <a href="http://thainews.prd.go.th" target="_top"> H2'*312H2'A+H 24 #!#0 2*1!1L</a> </a> </td> </tr> <tr> <td class="textText1"> <a href="http://www.thaigeneralkonsulat.de/investment/enews.html" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/en.jpg" border="0"></a> </td> <td width="2px;"></td> <td class="textText2"> <a href="http://www.thaigeneralkonsulat.de/investment/enews.html" target="_top"> +!2"H2'#2"@7--H2"2#%8 *2*8%C+ H/ </a> </a> </td> </tr> </table> </div> <div class="inf_gap"></div> <div class="inf_header"> <center> <a href="http://www.mfa.go.th/web/2653.php" target="_top"> <img src="http://www.thaigeneralkonsulat.de/services/saranrom1.jpg" border="0"> </a> </center> </div> <div class="inf_body" style="text-align:left;"> <center> '4"8*#2 #!"L...#@#7H-1I*2#0A%01@4 </center> <p> *25'4"8*#2 #!"L #0#'2#H2#0@( @"A#HI-!9% H2'*2# A%0*2#01@4H2F *9H5HI-#0 2  2'D"1IC#0@(A%0H2#0@( </p><p> H2*2!2##11H2'*2#1@+82#L @5H"# 1D' %-'2! '4"22# A%0*2#01@45H@G#0B" LDI5HH </p> <center><a href="http://www.mfa.go.th/web/2653.php" target="_top"><img src="http://www.thaigeneralkonsulat.de/services/radio2.jpg" border="0"> <b>*25'4"8*#2 #!"L #0#'2#H2#0@(</b> </a> </center> </div> <div class="inf_gap"></div> <div class="inf_header"> <b>4H-</b> </div> <div class="inf_body" style="text-align:left;"> <table> <tr> <td colspan="3" class="textText1"> <b>K&ouml;niglich Thail&auml;ndisches Generalkonsulat</b> <br>*2*8%C+ H  #A#L@4#L <br>Kennedyallee 109 <br>60596 Frankfurt am Main <br>&#8658; A L: 069-69 86 8228 <br>&#8658; -5@!%L: thaifra@mfa.go.th <br>&#8658; <a href="./main/contact.html">4H--I-!9%*8%</a> </td> </tr> </table> </div> </div> <!-- ____________________ SECTION #2 - PERMANENT INFO END ___________ --> <!-- ________________________________________________________________ --> <!-- ____________________ SECTION #3 - CONTENTS START _______________ --> <div id="contents"> <div class="dir_gap"></div> <div class="dir_crc1"> <!--div class="cnt_header_b"> Sonstiges </div--> <div class="cnt_body_b" style="text-align:left;"> <table> <tr> <td width="2px" class="textText"></td> <td class="textText"> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/traunstein/profil.jpg" style="padding-right:1em;"> <a href="http://www.thaigeneralkonsulat.de/foto/traunstein/index.html"> <b>0 8! D"  #I2-2+2#D" "#12'5" @!7-@#2L DL @B-@-#L2@"4#L </b></a> <p> '1@*2#L5H 17 1'2! 2554 2"$4 1" 1*8'## *8% *2*8%C+ H  #A#L@4#L DI@I2#H'!2 %-'1#4*L!2*A%0'15C+!H A%00 8! D"  #I2-2+2#D" "#12'5" @!7-@#2L DL @B-@-#L2@"4#L </p> <p> <br>&#8658; <a href="http://www.thaigeneralkonsulat.de/foto/traunstein/index.html">-H2H-</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/news/kaffee.jpg" style="padding-right:1em;"> <a href="http://www.thaigeneralkonsulat.de/news/kaffeemaschine.pdf"><b>2"@#7H-32A Saeco 8P</b></a> <p> *2*8%C+ H / #02(2"@#7H-32A Saeco 8P: </p> <p> &#8658; * 25 <br>&#8658; #22: 990 "9B# <br>&#8658; <a href="http://www.thaigeneralkonsulat.de/news/kaffeemaschine.pdf">#2"%0@-5" ( 2)2-1$))</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/news/hochwasser/profil2.jpg" style="padding-right:1em;"> <a href="http://www.thaigeneralkonsulat.de/news/spenderliste.pdf"><b>#2" 7H-9I#42@4 H'"@+%7-9I#0* 1"I3H'!C#0@(D"</b></a> <p> #2" 7H-9I#42@4 H'"@+%7-9I#0* 1"I3H'!C#0@(D" B"#42H2*2*8%C+ H  #A#L@4#L </p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/news/spenderliste.pdf">-H2H-...</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/wanchat2011/profil.jpg" style="padding-right:1em;"> <a href="http://www.thaigeneralkonsulat.de/foto/wanchat2011/index.html"> <b>45'2"#0# 1"!% @7H-C'1@ %4!#0 !##)2#02*!@G#0@I2-"9H+1'/</a> </b> </p> <p> *2*8%C+ H  #A#L@4#L DI12@%5I"#1#-'2"#0# 1"!% @!7H-'1(8#L5H 2 1'2! 2554 B"!5+H'"2#2 2#D"  #A#L@4#L *2*8%C+ H#0@(H2F +H'"2A%0-L# #4)1 A%0A9I!5@5"#4H2-7HF @I2#H'!45'2"#0# 1"!%/ </p> <p> A%0@!7H-'1-24"L5H 4 1'2! 2554 2'D"A%0#-#1'DI@I2#H'!45'2"#0# 1"!% @7H-C'1@ %4!#0 !##)2#02*!@G#0@I2-"9H+1'/ B"!52#A*2%8H! 2'D"2@!7-H2F <p> <a href="http://www.thaigeneralkonsulat.de/foto/wanchat2011/index.html">&#8658; -H2H-</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/meritmaking/profil.jpg" style="padding-right:1em;"> <a href="http://www.thaigeneralkonsulat.de/foto/meritmaking/index.html"> <b>4538 @%5I"#0A%02##0 8!5!#0@(D" @!7H-'15H 26 $(42" 2554 </b></a> <p> @!7H-'1@*2#L5H 26 $(42" 2554 *2*8%C+ H  #A#L@4#L DI14538 @%5I"#0  5H32#*2*8%C+ H/ @7H-CB-2*2##1#8"2"7I5H32#A%07I5HC+I#42##0 2  2"C*312C+I'I2'2A%0*0'*2""4H6I </p> <p>A%0C'1@5"'15I DI!52##0 8!5!#0@(D" B"!5 // #. #4"L'1L *108# @--1###2 9  #8@-#L%4 @G#02 </p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/foto/meritmaking/index.html">Weiter...</a> </p> </td> </tr> <!--tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/news/hochwasser/profil2.jpg" style="padding-right:1em;"> <b>-@ 4  '9I!54(#12#H'!#42@4 H'"@+%7-9I#0*-8 1"C#0@(D"</b></a> <p> *2*8%C+ H  #A#L@4#L A%0#0#'2#H2#0@( -@ 4  '9I!54(#12#H'!#42@4 H'"@+%7-9I#0*-8 1"C#0@(D" <a href="http://www.thaigeneralkonsulat.de/news/hochwasser/index.html">-H2H-...</a> </p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/news/hochwasser/helfen_th.pdf">+!2"@%B#(1L4H-(9"L H'"@+%7-9I#0* 1"I3H'! 5H*2!2#4H-DI%- 24 1H'B!</a> <br>&#8658; <a href="http://www.auswaertiges-amt.de/DE/Laenderinformationen/00-SiHi/ThailandSicherheit.html" target="_top">Aktuelle Hinweise des Ausw&auml;rtigen Amtes</a> ( 2)2@"-#!1) </p> </td> </tr--> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/news/information/2011/9_2554.jpg" style="padding-right:1em;"> <p> <b>H2'#0 2*1!1L*2*8%C+ H  #A#L@4#L 5H 9/2554 @#7H-A'414C<u>2#"@%4</u>@#7H-2#-*%0*1  24D"</b> <p> &#8658; -H2#2"%0@-5" <a href="http://www.thaigeneralkonsulat.de/news/information/2011/9_2554.pdf">@#7H-A'414C<u>2#"@%4</u>@#7H-2#-*%0*1  24D"</a> </p> <p> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/news/mfa.jpg" style="padding-right:1em;"> <b>#0#'2#H2#0@("2"@'%2#1*!1#*-AH1##88%@I2#1#2 2#</b> <p> #0#'2#H2#0@("2"@'%2#1*!1#*-AH1##88%@I2#1#2 2#@GI2#2 2#%@#7-*2!1 A%0AH1IC+I3#3A+H12#94142##035 2554 D6<b>'15H 30 $(42" 2554</b> </p> <p> &#8658; -H2#2"%0@-5"<a href="http://www.thaigeneralkonsulat.de/news/verlaengerung.pdf">#02(#0#'2#H2#0@(</a> </a> </p> <!--p> <marquee scrollamount ="2" behavior="alternate"><span style="color: #d30544;"><b>Mobiler Konsular-Service am 27. August 2011 in M&uuml;nchen</b></span></marquee></p--> </td> </tr> <!--tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/services/mobil/2011/muenchen/muenchen.jpg" style="padding-right:1em;"> <b>#42#*8%*1 #'15H 27 *4+2! 2554  #!4'4 </b> <p> '15H 27 *4+2! 2554 *2*8%C+ H/ 0@42D#42#*8%*1 #AH 2'D"  #!4'4 (Munich/M&uuml;nchen) </p> <p>*25H: *2*8%44!(14L  #!4'4 - K&ouml;niglich Thail&auml;ndisches Honorargeneralkonsulat, Prinzenstr. 13, 80639 M&uuml;nchen <p></p> <a href="http://www.thaigeneralkonsulat.de/services/mobil/2011/index_th.html">&#8658; -H2#2"%0@-5"</a> <p></p> <marquee scrollamount ="2" behavior="alternate"><span style="color: #d30544;"><b>#42#*8%*1 #'15H 27 *4+2! 2554  #!4'4</b></span></marquee></p> </td> </tr--> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/hausach/profil.jpg" style="padding-right:1em;"> <b><a href="http://www.thaigeneralkonsulat.de/foto/hausach/index.html"> 2" 1"@%4( +%4!*!9#L *8%C+ H  #A#L@4#L #H'!@422#-H2'####!#0#2 4LD%I2 C#02*!@G#08%-!@%I2@I2-"9H+1'/ </b></a> <p> @!7H-'15H 13 $(42" 2554 2" 1"@%4( +%4!*!9#L *8%C+ H  #A#L@4#L A%02"-9B #1@- 9IA2"@(!#5@!7-@.2 1 #12@4 @'7-#L@G!A#L DI@G#02#H'!@422#-H2'####!#0#2 4LD%I2 C#02*!@G#08%-!@%I2@I2-"9H+1'/ 2)2D"A%0 2)2@"-#!1  +I-#0 8!(2%2'H22#@!7-@.2 1 21%H2'16IB"*!2!I2A**8 3B"24#2 #L D!@--#L-1L #02*!2!/</p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/foto/hausach/index.html">Weiter...</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/preisverleihung/profil.jpg" style="padding-right:1em;"> <b><a href="http://www.thaigeneralkonsulat.de/foto/preisverleihung/index.html"> 2"$4 1" 1*8'## *8% @G9IA*2*8%C+ H  #A#L@4#L !-#2'1%2#@#5"A%02#*- 2)2D"5@H </b></a> <p> @!7H-'15H 8 $(42" 2554 #0+'H2 @'%2 16.00-18.00 . 2"$4 1" 1*8'## *8% @G9IA*2*8%C+ H  #A#L@4#L !-#2'1%2#@#5"A%02#*- 2)2D"5@H 3' 1,000 "9B# @7H-@G82#(6)2AH 2"2@5"% @#2*L@ - (Daniel Krausse) 1(6)2'4 2 2)2D" 2'4 2@-@ 5"-2@"L(6)2 !+2'4"2%1" Johann Wolfgang Goethe #A#L@4#L 6H!5%2#*-5@"5H"!</p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/foto/preisverleihung/index.html">Weiter...</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/paderborn/profil.jpg" style="padding-right:1em;"> <b><a href="http://www.thaigeneralkonsulat.de/foto/paderborn/index.html"> 2" 1"@%4( +%4!*!9#L *8%C+ H  #A#L@4#L #H'!@4I2'1##!D"  @!7-2@-#L-#L </b></a> <p> @!7H-'15H 5 $(42" 2554 2" 1"@%4( +%4!*!9#L *8%C+ H  #A#L@4#L A%02"41L -#0@*#4 #-*8%C+ H @G@5"#4@I2#H'!45@4I2'1##!D"  @!7-2@-#L-#L @7H-@G8(9"L%214##!'1##!*3+#1 2'D"5H-2(1"-"9HC@!7-2@-#L-#LA%0@!7-C%I@5" #'!6 2'@"-#!1 6H*CC'1##!D" </p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/foto/paderborn/index.html">Weiter...</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/kranzlegung/profil.jpg" style="padding-right:1em;"> <b><a href="http://www.thaigeneralkonsulat.de/foto/kranzlegung/index.html"> 45'2'!2%2@7H-C'14"0!+2#2  23 8%2! 2554</a> </b> <p> @!7H-'15H 23 8%2! 2554 +H'"2#2 2#D" 9I#0-2#D" A%0#0 2  2'D"C*+1L*22##1@"-#!5 #I-!I'"1'A9I#4+2#@!7-2 .-!'#L #H'!#0-45'2'!2%2'2"*12#0H-+I2#0#!#91I#02*!@G#08%-!@%I2@I2-"9H+1'/ #1 2%5H 5 @7H-C'14"0!+2#2  @7H-I-!#3%66#0!+2#8248-#02*!@G#08%-!@%I2@I2-"9H+1'/ #1 2%5H 5 </p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/foto/kranzlegung/index.html">-H2H-...</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/nuernberg/profil.jpg" style="padding-right:1em;"> <b><a href="http://www.thaigeneralkonsulat.de/foto/nuernberg/index.html"> 2"441L -#0@*#4 #-*8%C+ H @G#02@42'1(4%0A%0'1##!@-@ 5"  @!7-6#LA#L #1I5H 4</b></a> <p> @!7H-'15H 24 1"2" 2554 2"441L -#0@*#4 #-*8%C+ H @G#02#H'!19IA@!7-6#LA#L@42'1(4%0A%0'1##!@-@ 5"  @!7-6#LA#L #1I5H 4 6H16IB"*!2!(4%0A%0'1##!D"@!7-6#LA#L 3B"88 @#5" D. L A%0C2#1I5I-2 8! D"A%I'"1!5 8!  2'@'5"2! %2' 4%44*L A%0-4@5" @I2#H'!I'" </p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/foto/nuernberg/index.html">Weiter...</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/de/consular/beglaubigung.jpg" style="padding-right:1em;"> <b><a href="http://www.thaigeneralkonsulat.de/de/consular/beglaubigung_th.pdf"> H2'#0 2*1!1L*2*8%C+ H  #A#L@4#L 5H 7/2554</a> </b> <p> H2'#0 2*1!1L*2*8%C+ H  #A#L@4#L 5H 7/2554 @#7H- #0@5"#0#'2#H2#0@('H2I'"2##1#-@-*2# .(. 2539 AI#0 2*1!1LC+II-!9%@5H"'1A'2A%01I-2##1#-@-*2#5H9I-2!#0@5"#0#'2#H2#0@('H2I'"2##1#-@-*2# .(. 2539 1%H2' </p> <p> &#8658; <a href="http://www.thaigeneralkonsulat.de/de/consular/beglaubigung_th.pdf">-H2H-...</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/news/gartenschau.jpg" style="padding-right:1em;"> <b><a href="http://www.royalflora2011.com" target="_top">2!+##!7 *'B%@ %4!#0@5"#4/ #2 $)L 2554: 14 1'2! 2554 - 14 !52! 2555  1+'1@ 5"C+!H</b></a> <p> #0#'@)#A%0*+#LA%0*!2!7 *'A+H#0@(D"@+G -C2#@*--@G @I2 212 !+##!7 *'B%@ %4!#0@5"#4/ #2 $)L 2554 #01 A2/B1 H-*!2!7 *'#0+'H2#0@( (International Asssociation of Horticultural Producers:AIPH) A%0#0#'@)#A%0*+#L ().) DI@*-B#2#12!+##!7 *'B%@ %4!#0@5"#4/ #2 $)L 2554 H-0#1!#5 @!7H-'15H 22 *4+2! 2551 0#1!#5!5!4@!7H-'15H 2 1"2" 2551 -8!14C+I#0#'@)#A%0*+#L#14 -2#12!+##!7 *'B%@ %4!#0 @5"#4/ #2 $)L 2554  -8"2+%'#2 $)L 3%A!H@+5"0 -3@ -@!7- 1+'1@ 7"C+!H </p> <p> &#8658; <a href="http://www.royalflora2011.com" target="_top">@'GD L2!+##!7 *'B%@ %4!#0@5"#4/ #2 $)L 2554</a> </p> </td> </tr> <tr> <td align="center" width="2px" class="textText"></td> <td align="center" class="textText"> <hr> <p> <script type="text/javascript"> //new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds) new pausescroller(pausecontent, "pscroller1", "someclass", 2000) document.write("<br />") new pausescroller(pausecontent2, "pscroller2", "someclass", 2000) </script> </p> </td> <tr> <td width="2px" class="textText"></td> <td class="textText"> <p> <b>2@(2%$9#I-D"  @!7-2 .-!'#L @!7H-'15H 6-7 *4+2! 2554</b></a> <p>-20!52#A*@'5 -24 2#A*B-#!(4%L #3D" A%0(4%02#H-*9ID" A%I' "1!5+H'"2#2 2#D"--9C+II-!9%H2F @ H I-!9%*8% I-!9%2#I2A%02#%8 @GI A%0 #I2I2#I2-2+2#--#I23+H2"*4I2A%0-2+2# </p> <p> <a href="http://www.thaigeneralkonsulat.de/foto/badhomburg2011/index.html" target="_top">&#8658; #0!'%#9 222@(2%$9#I-D" 2554</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/mobil/2011/munich/profil.jpg" style="padding-right:1em;" border="0"></a> <b>#0!'% 222*8%*1 #  #!4'4 @!7H-'15H 27 *4+2! 2554</b></a> <p> @!7H-'15H 27 *4+2! 2554 2"441L -#0@*#4 #-*8%C+ H  #A#L@4#L 2"$4 1" 1*8'## *8% 2*8 1  2 @8#5# *8% A%0#I-!5!22*2*8%C+ H/ DI@42DC+I#42#*8%*1 # #1I5H 6 #035#0!2 2554  #!4'4 #12'2@#5" (2@"4#L) </p> <p> <a href="http://www.thaigeneralkonsulat.de/foto/mobil/2011/munich/index.html">&#8658; -H2H- </a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/foto/event/paderborn/profil.jpg" style="padding-right:1em;"> <b>2 I2D"  @!7-2@-#L-#L - Thail&auml;ndisches Elefantenfest in Paderborn</b></a> <p> @!7H-'15H 4 !482" 2554 2"441L -#0@*#4 #-*8%C+ H  #A#L@4#L DI#1@ 4 @G@5"#4C2 I2D" (Thail&auml;ndisches Elefantenfest)  @!7-2@-#L-#L (Paderborn) B"21%H2'16ICB-2*2#@ %4! %- 150 5 '2!*1!1L22#9D"-@"-#!1 A%0DI#12#*1*82#122 2"D. L @2*L (Herr Heinz Paus) 9I'H2#2 2#@!7-2@-#L-#L</p> <!--p> Herr Chittipat Tongprasroeth, stellv. Generalkonsul, war Ehrengast beim thail&auml;ndischen Elefantenfest am 04. Juni 2011 in Paderborn. Das Fest fand anl&auml;sslich der 150 j&auml;hrigen Beziehung zwischen Thailand und Deutschland unter der Schirmherrschaft des Paderborner B&uuml;rgermeisters Heinz Paus statt. </p--> <p> <a href="http://www.thaigeneralkonsulat.de/foto/event/paderborn/index.html">&#8658; -H2H-</a> </p> </td> </tr> <tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <img align="left" src="http://www.thaigeneralkonsulat.de/news/polen.jpg"style="padding-right:1em;"> <b>#0#'!+2D"3+#2" 7H-#0@(5HDI#12#"@'I2##'%#2@I2#0@(@7H-2#H-@5H"'@4H!@4!</b></a> <p> #0#'!+2D"DI#02(3+#2" 7H-#0@(5H9I7-+1*7-@42+#7-@-*2#C IA+1*7-@42 6H@I2!2C#2 -221#@G2# 1H'#2'@7H-2#H-@5H"'DI#12#"@'I2##'%#2A%0C+I-"9HC#2 -221#DID!H@4 30 '1 @4H!@4! 3' 6 #0@( 15I *22##1@ G *22##1.12#5 #2 #1%4@*DL *22##1BA%L *22##1*B%'1 A%0 *22##1*B%'5@5" </p> <p> <a href="http://www.thaigeneralkonsulat.de/news/visa_list_th.pdf">&#8658; #02(#0#'!+2D"</a> <br><a href="http://www.thaigeneralkonsulat.de/de/consular/visa.html">&#8658; I-!9%2##'%#2@I2#0@(D" ( 2)2@"-#!1)</a> </p> </td> </tr> <!--tr> <td width="2px" class="textText"></td> <td class="textText"> <hr> <a href="http://www.thaigeneralkonsulat.de/news/mobilkonsular/hausach/index.html"> <img align="left" src="http://www.thaigeneralkonsulat.de/news/mobilkonsular/hausach/hausach.jpg" style="padding-right:1em;" border="0"></a> <b> <a href="http://www.thaigeneralkonsulat.de/news/mobilkonsular/hausach/index.html"> #0!'% 222*8%*1 #  @!7-@.2 1 @!7H-'15H 23 #2! 2554</b></a> <p> @!7H-'15H 23 #2! 2554 #0+'H2 @'%2 9.30 -17.00 . 2"441L -#0@*#4 #-*8%C+ H  #A#L@4#L 2"$4 1" 1*8'## *8% 2*8 1  2 @8#5# *8% A%0#I-!5!22*2*8%C+ H/ DI@42DC+I#42#*8%*1 # #1I5H 5 #035#0!2 2554  @!7-@.2 1 #12@4-@'7-#L@!A#L <a href="http://www.thaigeneralkonsulat.de/news/mobilkonsular/hausach/index.html">-H2H-...</a> </td> </tr--> </table> </div> </div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_crc1"> <div class="cnt_body_s" style="text-align:left;"> <table> <tr> <td width="2" ></td> <td width="40" valign="top"> <img border="0" src="http://www.thaigeneralkonsulat.de/de/consular/profil.jpg"> </td> <td width="2"></td> <td class="textText" valign="top"> <b>#42#2*8%</b> <ul type="square"> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/adoption.html">2##1@GD"+#7-8%*1  24D"@G8#8 ##!</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/heirat.html">0@5"*!#*2!+!2"D"5H*2*8%C+ H/ </a> <li><a href="http://www.thaigeneralkonsulat.de/de/consular/heirat_in_thailand.html">0@5"*!#*2!+!2"D"C#0@(D"</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/scheidung.html">0@5"+"H22!+!2"D"5H*2*8%C+ H/</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/geburtsanzeige.html">AI@4@7H--*941#D"</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/todesanzeige.html">AI2#@*5" 5'4@7H--!#1#D"</a> <li><a href="http://www.thaigeneralkonsulat.de/de/consular/visa.html">#'%#2@I2#0@(D" ('5 H2)</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/name_heirat.html">@%5H"2!*8%A%0/+#7-@%5H"33+I2 7H-+%1*!#*</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/name_scheidung.html">@%5H"2!*8%+%12#+"H2</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/vollmacht.html">!--32A%0+1*7-"4"-! </a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/beglaubigung.html">#1#-@-*2#</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/military.html">+1*7--H-12#@I2#12##'@%7-@I2#1#2 2#+2# (-H-12#@L+2#)</a> <li><a href="http://www.thaigeneralkonsulat.de/th/consular/epass.html">+1*7-@42D": I-!9%@5H"'1+1*7-@42-4@%G#-4*L (-5-2*-#L)</a> </li></ul> <p></p> <a href="http://www.thaigeneralkonsulat.de/th/consular/index.html">&#8658; -H2H-...</a> </td> </tr> </table> </div> </div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_crc1"> <div class="cnt_body_s1" style="text-align:left;"> <table> <tr> <td class="textText"> <b>@42@I2#0@(D"</b> <p>*4H5HH2'##2: </p> <ul type="square" style="margin-left: 15px; margin-top: 3px;"> <li style="margin-top: 4px"><a href="../de/consular/visa.html">#'%#2@I2#0@(D" ( 2)2@"-#!1)</a> <li style="margin-top: 4px"> <a href="../de/consular/kinderausweis.html">C*84#031'@G@"-#!1 (Kinderausweis) C I@42@I2#0@(D"D!HDI </a> <li style="margin-top: 4px"> <a href="../hinweise/waehrung.html">+%1@LC+!H@5H"'12#AI#2"2#+#7-2#*3A@4#2H2#0@(@!7H-3--D-#0@(D"+#7-@I2!2C#0@(D"</a> <li style="margin-top: 4px"><a href="../hinweise/geistiges_eigentum.html">-#0 2*1!1LAI@7-2#3*4I2%0@!4#1"L*421  2 (*4I2%-!) 41'@I2#0@(C"8B# </a> <li style="margin-top: 4px"> Wenn Sie als Journalist nach Thailand reisen wollen, m&uuml;ssen Sie sich <a href="http://www.thaigeneralkonsulat.de/news/press/index.html">Press Accreditation</a> unterziehen. </li> </ul> </td> <td class="textText" valign="center"><a href="http://www.thaigeneralkonsulat.de/de/consular/visa.jpg"><img border="0" src="http://www.thaigeneralkonsulat.de/de/consular/visa1.jpg"></a> <br><a href="http://www.learners.in.th/ file/eing_tkd/025534.jpg" target="_top"><i>Bildernachweis</i></a> </td> </tr> </table> </div> </div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_crc1"> <div class="cnt_body_s" style="text-align:left;"> <table> <tr> <td class="textText1"> <b>I-!9%*31 *3+#1D" - Wichtige Informationen f&uuml;r thail&auml;ndische Staatsb&uuml;rger</b> <ul type="square" style="margin-left: 15px; margin-top: 8px;"> <li><a href="#wahl">2#@%7-1I-#2 -221#</a> <li><a href="./anno/epass.pdf">#02(@#7H-2#"7H3#I--+1*7-@42-4@%G#-4*L (E-Passport)</a> <li><a href="./hinweise/anmeldung.html">2##2"21'-8%*1  24D"H-*2*8%C+ H  #A#L@4#L</a> <li>I-'#414C2#@#5"!1'*3+#1*22#L 8@ 4H2F <ul style="margin-left: 16px; margin-top: 2px;"> <li style="margin-top: 6px"><a href="./anno/sicherheit/hinweis_1.pdf">I-'#414C2#@#5"!1'*3+#1*22#L 8@ 4H2F *3+#1D"C@"-#!5</a> <li><a href="./anno/sicherheit/hinweis_2.pdf">I-'#414C2#@#5"!1'*3+#1*22#L 8@ 4H2F *3+#19I#0*22 8! D"C@"-#!5</a> <li><a href="./anno/sicherheit/contact_0909.xls">#2" 7H-1'A 8! D"C@-22-*2*8%C+ H/ *3+#14H-C*22#L 8@ 4</a> </ul> </ul> </td> </tr> </table> </div> </div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <!--div class="dir_crc1"> <div class="cnt_body_s1" style="text-align:left;"> <table> <tr> <td> <ul type="square" style="margin-left: 15px; margin-top: 6px;"> <li style="margin-top: 4px"><a href="./anno/anno11.pdf"> Mitteilung Nr. 1/2551 betr. unerlaubtes Nutzen des Namen des K&ouml;niglich Thail&auml;ndischen Generalkonsulats bez&uuml;glich der konsularischen Angelegenheiten</a> <li style="margin-top: 4px"><a href="./de/main/gebuehren.pdf"> Mitteilung des Generalkonsulats betr. konsularische Geb&uuml;hren ab dem 11. November 2009</a> <li style="margin-top: 4px"><a href="./anno/epass.pdf"> Bekanntmachung hinsichtlich der Antragstellung auf elektronischen Reisepass - E-Pass</a> </li> </ul> </td> </tr> <tr> <td align="right"> <a href="./anno/index.html">Weiter...</a> </td> </tr> </table> </div> </div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_crc1"> <div class="cnt_body_s" style="text-align:left;"> <table> <tr> <td> <center> <img src="./wahl/wahl1.jpg" border="0"> </center> <ul type="square" style="margin-left: 15px; margin-top: 8px;"> <li style="margin-top: 6px"> <a href="http://www.thaigeneralkonsulat.de/wahl/info_briefwahl.pdf"> H2'#0 2*1!1L/ 5H 3/2554 @#7H- 2#%0@5"C I*44@%7-1I-#2 -221#</a> <img border="0" src="http://www.thaigeneralkonsulat.de/punkt.gif"><img border="0" src="http://www.thaigeneralkonsulat.de/punkt.gif"> <li style="margin-top: 6px"> <a href="http://www.thaigeneralkonsulat.de/wahl/briefwahl.pdf"> 3+'1@%7-1I-#2 -221#2D#)5"L</a> <img border="0" src="http://www.thaigeneralkonsulat.de/punkt.gif"><img border="0" src="http://www.thaigeneralkonsulat.de/punkt.gif"> <li style="margin-top: 6px"> <a href="http://www.thaigeneralkonsulat.de/de/form/wahl.pdf">A3#I--C I*44@%7-1I/-@%5H"A%2#C I*44@%7-1I-#2 -221#</a> <img border="0" src="http://www.thaigeneralkonsulat.de/punkt.gif"><img border="0" src="http://www.thaigeneralkonsulat.de/punkt.gif"> <li style="margin-top: 6px"> <a href="./wahl/wahl.pdf">I-!9%2#@%7-1I-#2 -221#</a> <li style="margin-top: 6px"> <a href="./wahl/anno_wahl.pdf">2##1#80@5"#2" 7H-9I!5*44@%7-1I-#2 -221#C+I@G181</a> <li style="margin-top: 6px"> <a href="./wahl/election_2550.pdf">#02(/ @ 4  'C+IC I*44@%7-1I*!2 4* 29IA/ -#2 -221#2D#)5"L 5 2550</a> </li> </ul> </td> </tr> </table> </div> </div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div--> <div class="dir_crc1"> <div class="cnt_body_s" style="text-align:left;"> <table> <tr> <td class="textText"> <b> 8! D"C@"-#!5</b> <!--center><a href="./th/culture/tempel/index.html"><img src="./bar/tempel.png" border="0"></a></center--> <ul type="square" style="margin-left: 15px; margin-top: 8px;"> <li style="margin-top: 3px"> <a href="http://www.thaistudents.de" target="_top"> *!2!1@#5"D"C@"-#!5 </a> <li style="margin-top: 3px"> <a href="http://www.thara-verein.de" target="_top"> *!2!2#2 - *!2!-+ 4D"C@"-#!5</a> <li style="margin-top: 3px"> <a href="http://www.thaibodensee.de" target="_top"> *!2!(4%0A%0'1##!D" @.@2-B@@ </a> <li style="margin-top: 3px"> <a href="http://www.dtg-bonn.de" target="_top"> Deutsch-Thail&auml;ndische Gesellschaft e. V.</a> <li style="margin-top: 3px"> <a href="http://www.ban-saensuk.com" target="_top"> Verein zur F&ouml;rderung notleidender Kinder in Nord Thailand</a> <li style="margin-top: 3px"> <a href="http://www.fim-frauenrecht.de/" target="_top"> FIM - Frauenrecht ist Menschenrecht</a> <li style="margin-top: 3px"> <a href="http://www.projekt-mitte.de/public/index.php?id=25" target="_top"> Thai-Deutsche Evangelische Gemeinde in Berlin</a> <li style="margin-top: 3px"> <a href="http://www.thailandinlippe.de/" target="_top"> 8! D"@!7-%4@-</a> </ul> <!--p align="right"><a href="./activity/index.html">Weiter...</a></p--> </td> <td width=10px></td> <td class="textText" valign="center"> <img border="0" src="http://www.thaigeneralkonsulat.de/thaigemeinden/profil.jpg"></a> </td> </tr> </table> </div> </div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_crc1"> <div class="cnt_body_b" style="text-align:left;"> <table> <tr> <td class="textText" colspan="4"><b>Sonstige interessante Informationen</b></td> </tr> <tr> <td></td> </tr> <tr> <td></td> </tr> <tr> <td width="2" ></td> <td width="40" valign="top"> <img border="0" src="http://www.thaigeneralkonsulat.de/news/verschiebung.jpg"> </td> <td width="2"></td> <td class="textText" valign="top"> <a href="http://www.europarl.europa.eu/sides/getDoc.do?pubRef=-//EP//TEXT+IM-PRESS+20080625FCS32672+0+DOC+XML+V0//DE" target="_top"> <b>EU-R&uuml;ckf&uuml;hrungsrichtlinie</b></a> <p> Am 18. Juni 2008 hat das Europaparlament mehrheitlich eine Richtlinie gebilligt, die den Umgang mit Ausl&auml;ndern, die sich nicht rechtm&auml;&szlig;ig in der EU aufhalten, einheitlichen Regeln unterwirft. Zuvor hatte Berichterstatter Manfred Weber (CSU) mit dem Ministerrat einen Kompromisstext ausgehandelt. Die Richtlinie ist das erste vom Europaparlament in diesem Bereich verabschiedete Gesetz und gilt als wichtiger Meilenstein auf dem Weg zu einer europ&auml;ischen Immigrationspolitik. <a href="http://www.europarl.europa.eu/sides/getDoc.do?pubRef=-//EP//TEXT+IM-PRESS+20080625FCS32672+0+DOC+XML+V0//DE" target="_top"> Weiter...</a> </p> </td> </tr> <tr><td colspan="4"><hr style="color: #b1c8f1;" size="1"></td></tr> <tr> <td width="2" ></td> <td width="40" valign="top"> <img border="0" src="http://www.thaigeneralkonsulat.de/foto/blue_card1.jpg"> </td> <td width="2"></td> <td class="textText" valign="top"> <b> EU Blue Card - -5"9 %92#L</b> <p> * 2"8B#DI%!4@+G -#H2#0@5" EU Blue Card (-5"9 %92#L) 2!#-"#52#L-*+#1/ @7H-69A#2H2 245!7-*92#0@(-%8H!*+ 2"8B# B"!52#3+@7H-D*3+#1#0@(*!2 4*+ 2"8B#C2##1A#2!55!7- #01*92#0@(5H*2!@I2-"9HA%032C#0@(*!2 4*+ 2"8B# <a href="http://www.thaigeneralkonsulat.de/news/blue_card.html">-H2H-...</a> </p> </td> </tr> <tr><td colspan="4"><hr style="color: #b1c8f1;" size="1"></td></tr> <tr> <td width="2" ></td> <td width="40" valign="top"> <img border="0" src="http://www.thaigeneralkonsulat.de/foto/wissen.jpg"> </td> <td width="2"></td> <td class="textText" valign="top"> <b>#0@(D"DI#1@%7-C+I@G5H1I(9"L@ 5H"' 2 @ 20I2C2#'41"A%02#@#5"2#*-</b> <p> 0##!2##H'!#0+'H2*21A%@%5H"2'4 22#@"-#!1 (DAAD) A%0#0#'2#H2#0@(@"-#!1DI@%7-#0@(D"@G 1 C 4 #0@( 7- #1*@ 5" D" 4%5 A%0 B%1!@5" *3+#111I(9"L@ 5H"' 2 @ 20I2C2#'41"A%02#@#5"2#*- @7H-C+I@4'2!#H'!!7-I22#'41"A%02#@#5"2#*-@ 20I2#0+'H2 !+2'4"2%1"@"-#!1A%0*212#(6)2-#0@(5H11I(9"L Chile (Santiago de Chile) und Kolumbien (Santa Marta). <a href="http://www.thaigeneralkonsulat.de/news/wissen.html">-H2H-...</a> </p> </td> </tr> </table> </div> </div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_gap"></div> <div class="dir_crc2"> <div class="cnt_body_b" style="text-align:left;"> <table> <tr> <td class="textText1" > <b>"* . -%H2'" - Beitr&auml;ge des RTC-Mitarbeiterteams</b> <p> <b><a href="http://www.thaigeneralkonsulat.de/beitrag/index.html">"* . -%H2'"</a></b> @G'2!5HH2*C@5H"'12*8% 5H@5"B"5!@I2+I25H*2*8%C+ H/ I'" 2)2H2"F A%0C I1'-"H22@+82#L#4 @7H-9I-H20DI@I2C2*8%DI5"4H6I -20@G'2!C+II-!9%@5H"'12*8%A%I' "1@G'2!#0 2*1!1L4##!A%0C+II-!9%@+82#L1811H'-5I'" </p> <p> -@ 4 <a href="http://www.thaigeneralkonsulat.de/beitrag/index.html">%4-H2'2!</a> </p> <p> <ul type="square"> <li><a href="http://www.thaigeneralkonsulat.de/beitrag/index.html">5 .(. 2554</a> <li><a href="http://www.thaigeneralkonsulat.de/beitrag/index.html">5 .(. 2553</a> <li><a href="http://www.thaigeneralkonsulat.de/beitrag/index.html">5 .(. 2552</a> </li> </ul> <!--p> Interessante Beitr&auml;ge &uuml;ber konsularische Angelegenheiten verfasst vom Mitarbeiter-Team des K&ouml;niglich Thail&auml;ndischen Generalkonsulats. Leider sind diese nur in thail&auml;ndischer Sprache verf&uuml;gbar. </p--> </td> </tr> </table> </div> </div> <div style="width: 660px;"></div> <div class="dir_gap"><br></div> </div> <!-- ____________________ SECTION #3 - CONTENTS END _________________ --> <!-- ________________________________________________________________ --> <!-- ____________________ SECTION #4 - FOOTER START _________________ --> <div id="footer"> <table align="center"> <tr> <td><a href="http://kanchanapisek.or.th/index.th.html" target="_top"><img src="../bar/link/kancha.jpg" border="0"></a></td> <td><a href="http://www.thaigov.go.th/" target="_top"><img src="../bar/link/gov.png" border="0"></td> <td><a href="http://www.mfa.go.th/" target="_top"><img src="../bar/link/mfa2.png" border="0"></a></td> <td><a href="http://www.consular.go.th/" target="_top"><img src="./consularbar.png" border="0"></a></td> </tr> <tr> <td><a href="http://www.thaiembassy.de/" target="_top"><img src="./berlinbar.png" border="0"></a></td> <td><a href="http://www.thaieurope.net/" target="_top"><img src="./thaieuro.png" border="0"></a></td> <td><a href="http://www.immigration.go.th/nov2004/en/base.php" target="_top"><img src="../bar/link/immi.jpg" border="0"></a></td> <td><a href="http://www.dol.go.th/guide/menu_foreigner.php" target="_top"><img src="../bar/link/land.jpg" border="0"></a></td> </tr> <tr> <td><a href="http://www.thailandtourismus.de/" target="_top"><img src="./tourismusbar1.png" border="0"></a></td> <td><a href="http://www.depthai.go.th/" target="_top"><img src="./handelbar.png" border="0"></a></td> <td><a href="http://www.boi.go.th/" target="_top"><img src="./investbar.png" border="0"></a></td> <td><a href="http://www.thaistudents.de/" target="_top"><img src="./studiumbar1.png" border="0"></a></td> </tr> </table> <table width="888" align="center"> <tr> <td width="222"> </td> <td colspan="1" align="center"> <hr> <span style="font-size: 10px; text-align: center"> &copy; Royal Thai Consulate-General, Frankfurt am Main </span> </td> <td width="222"> </td> </tr> </table> </div> <!-- ____________________ SECTION #4 - FOOTER END ___________________ --> <!-- ________________________________________________________________ --> </div> </body> </html>