function DisplayLanguages()
{
    var menu1=new Array()
menu1[0]='<a href="http://www.ntdtv.com/xtr/b5/aMain.html" target="_self">正體中文</a>'
menu1[1]='<a href="http://www.ntdtv.com/xtr/gb/index.html" target="_self">简体中文</a>'
menu1[2]='<a href="http://ap.ntdtv.com/" target="_self">亞太</a>'
menu1[3]='<a href="http://www.NTDcantonese.com/" target="_self">粵語</a>'
menu1[4]='<a href="http://english.ntdtv.com/" target="_self">English</a>'
menu1[5]='<a href="http://www.ntdtv.jp/" target="_self">日本語</a>'
menu1[6]='<a href="http://www.ntdtv.co.kr/" target="_self">한국어</a>'
menu1[7]='<a href="http://www.tintucntdtv.com/" target="_self">tiếng việt</a>'
menu1[8]='<a href="http://www.ntdtv.ru/" target="_self">Русский</a>'
menu1[9]='<a href="http://spanish.ntdtv.com/" target="_self">Español</a>'
menu1[10]='<a href="http://indo.ntdtv.com/" target="_self">Bahasa</a>'
menu1[11]='<a href="http://fr.ntdtv.com/" target="_self">Français</a>'
menu1[12]='<a href="http://portuguese.ntdtv.com/" target="_self">Português</a>'
menu1[13]='<a href="http://hebrew.ntdtv.com/" target="_self">עברית</a>'
menu1[14]='<a href="http://www.ntdtv.cz/" target="_self">Čeština</a>'
menu1[15]='<a href="http://persian.ntdtv.com/" target="_self">فارسی</a>'
menu1[16]='<a href="http://german.ntdtv.com/" target="_self">Deutsch</a>'
menu1[17]='<a href="http://bulgarian.ntdtv.com/" target="_self">Bulgarian</a>'

for( i = 0; i < menu1.length; i++)
    {
        document.write( menu1[i]);
    }
} 


function DisplayLanguages_v2()
{
    var menu2=new Array()
menu2[0]='<option value="http://www.ntdtv.com/xtr/b5/aMain.html" >正體中文</option>'
menu2[1]='<option value="http://www.ntdtv.com/xtr/gb/index.html">简体中文</option>'
menu2[2]='<option value="http://ap.ntdtv.com/" >亞太</option>'
menu2[3]='<option value="http://www.NTDcantonese.com/">粵語</option></a>'
menu2[4]='<option value="http://english.ntdtv.com/"  >English</option>'
menu2[5]='<option value="http://www.ntdtv.jp/">日本語</option>'
menu2[6]='<option value="http://www.ntdtv.co.kr/">한국어</option>'
menu2[7]='<option value="http://www.tintucntdtv.com/">tiếng việt </option> '
menu2[8]='<option value="http://russian.ntdtv.com/">Русский</option>'
menu2[9]='<option value="http://spanish.ntdtv.com/">Español</option>'
menu2[10]='<option value="http://indo.ntdtv.com/">Bahasa</option>'
menu2[11]='<option value="http://fr.ntdtv.com/">Français</option> '
menu2[12]='<option value="http://portuguese.ntdtv.com/">Português </option> '
menu2[13]='<option value="http://hebrew.ntdtv.com/">עברית</option> '
menu2[14]='<option value="http://www.ntdtv.cz/" >Čeština</option>'
menu2[15]='<option value="http://persian.ntdtv.com/">فارسی</option>'
menu2[16]='<option value="http://german.ntdtv.com/">Deutsch</option>'
menu2[17]='<option value="http://bulgarian.ntdtv.com/">Bulgarian</option>'

document.write('<select id="sel_languages" name="sel_languages" onchange="window.location.href=this.options[this.selectedIndex].value">');
document.write('<option selected="selected" value="/">Change Language</option>');

for( i = 0; i <menu2.length; i++)
    {
        document.write( menu2[i]);
    }
document.write('</select>');
} 
