/*update 2002.11.22 Editer:Kimura */
/* start show list box --*/
function showlistbox()
{

count = 4;
option_text = new Array(count);

option_text[0] = '<option value="http://www.thk.co.jp/">Head Quater-JAPAN';
option_text[1] = '<option value="http://www.thk.de/">THK EUROPE';
option_text[2] = '<option value="http://www.thk.com.br/">THK BRASIL'; 
option_text[3] = '<option value="http://www.thk.com/">GLOBAL TOP';

/* Version Check */
app = navigator.appName.charAt(0); 
ver = navigator.appVersion.charAt(0);
if ((app == "N" || app == "M") && (ver <= 3)){ document.write("<br><br>");
    document.write('<table width="100%" border="0" cellspacing="0" cellpadding="4">');
    document.write('<tr>');
	document.write('<td height="12" width="13"><img src="/img/rightarrow_2.gif" width="11" height="7" hspace="2" border="0" alt=""></td>');
    document.write('<td><a href="/en/sitemap_en.html">Site Map</a></td>');
    document.write('</tr>');
    document.write('</table>');
  } else {

/* link box */
document.write('<form name="selwordwidelink">');
document.write('<table border="0" cellspacing="0" cellpadding="0">');
document.write('<tr>');
document.write('<td valign="bottom" align="right">');
document.write('<select name="select" '+'onChange="goUrl(this.form, this)" '+'size="1">');
document.write('<option selected>'+'-- World Wide Link --'+'</option>');

i = 0;
while ( i < count ) {
	document.write(option_text[i]+'</option>');
	i++;
}

document.write('</select>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
document.write('</form>');

}
}

/*end show link box*/
/*-----------------------------------*/