var valu_hotel = new Array(
"",
"ウェスティン東京",
"渋谷エクセルホテル東急",
"渋谷セルリアンタワー東急",
"アリマックスホテル渋谷",
"ラディソン都ホテル東京",
"目黒雅叙園");

var url_hotel = new Array(
"http://hotelking.fc2web.com/hotels/index.html",
"http://hotelking.fc2web.com/westhin.html",
"http://hotelking.fc2web.com/hotels/tokyuhotels_te.html",
"http://hotelking.fc2web.com/hotels/ceruleantower.html",
"http://hotelking.fc2web.com/hotels/arimaxhotelshibuya.html",
"http://hotelking.fc2web.com/hotels/miyakohotels_tokyo.html",
"http://hotelking.fc2web.com/hotels/megurogajoen.html");

var loop = 0;

document.write('<div align="left"><td bgcolor="#FFFFFF"><small>');

document.write('<b>他の近場の高級ホテル</b><br><br>');

for (loop = 1; loop < url_hotel.length; loop++)
{
	if(location == url_hotel[loop])
	{
		valu_hotel[loop] = "<B>" + valu_hotel[loop] + "</B>"
		document.write(valu_hotel[loop]);
		document.write(' / ');
		continue;
	}
	valu_hotel[loop] = "<a href=" + url_hotel[loop] + ">" + valu_hotel[loop] + "</a>";
	document.write(valu_hotel[loop]);
	document.write(' / ');
}

document.write('<div align="right"><br><br><a href="http://hotelking.fc2web.com/hotels/index.html"><b>高級ホテル一覧</b></a></div>');
document.write('</small></td></div>');