

function getJsParam( fn ) {
var scripts = document.getElementsByTagName( 'script' );
var script;
var params = {};
	
	for ( var i=0; i<scripts.length; i++ ) {
		var s = scripts.item( i );
		if( s.src.indexOf( fn ) != -1 ) {
		script = s;
		break;
		}
	}
	
	if( script ) {
		script.src.match( /(.*)(\?)(.*)/ );
		if( RegExp.$3 ) {
		var a = RegExp.$3.split( '&' );
			if( a ) {
				for( var k=0; k<a.length; k++ ) {
					var p = a[ k ].split( '=' );
					if( p[0] ) {
					params[ p[0] ] = p[1];
					}
				}
			} else {
			return false;
			}
		} else {
		return false;
		}
	} else {
	return false;
	}	
	return params;
}



Array.prototype.shuffle = function() {
var i = this.length;
	while(i){
	var j = Math.floor(Math.random()*i);
	var t = this[--i];
	this[i] = this[j];
	this[j] = t;
	}
return this;
}




var thotel = new Array;
thotel[0] = '<a href="http://www.agoda.jp/asia/thailand/koh_chang_trad.html?site_id=1413978" target="_blank">チャーン島のホテル</a>';
thotel[1] = '<a href="http://www.agoda.jp/asia/thailand/bangkok.html?site_id=1413978" target="_blank">バンコクのホテル</a>';
thotel[2] = '<a href="http://www.agoda.jp/asia/thailand/phuket.html?site_id=1413978" target="_blank">プーケットのホテル</a>';
thotel[3] = '<a href="http://www.agoda.jp/asia/thailand/samui.html?site_id=1413978" target="_blank">サムイ島のホテル</a>';
thotel[4] = '<a href="http://www.agoda.jp/asia/thailand/pattaya.html?site_id=1413978" target="_blank">パタヤのホテル</a>';
thotel[5] = '<a href="http://www.agoda.jp/asia/thailand/krabi.html?site_id=1413978" target="_blank">クラビのホテル</a>';
thotel[6] = '<a href="http://www.agoda.jp/asia/thailand/hua_hin_cha_am.html?site_id=1413978" target="_blank">ホアヒンのホテル</a>';
thotel[7] = '<a href="http://www.agoda.jp/asia/thailand/koh_phi_phi_krabi.html?site_id=1413978" target="_blank">ピピ島のホテル</a>';
thotel[8] = '<a href="http://www.agoda.jp/asia/thailand/koh_lanta_krabi.html?site_id=1413978" target="_blank">ランタ島のホテル</a>';

var bhotel = new Array;
bhotel[0] = '<a href="http://www.agoda.jp/asia/china/beijing.html?site_id=1413978" target="_blank">北京のホテル</a>';
bhotel[1] = '<a href="http://www.agoda.jp/asia/hong_kong/hong_kong.html?site_id=1413978" target="_blank">香港のホテル</a>';
bhotel[2] = '<a href="http://www.agoda.jp/asia/china/shanghai.html?site_id=1413978" target="_blank">上海のホテル</a>';
bhotel[3] = '<a href="http://www.agoda.jp/asia/singapore.html?site_id=1413978" target="_blank">シンガポールのホテル</a>';
bhotel[4] = '<a href="http://www.agoda.jp/asia/malaysia.html?site_id=1413978" target="_blank">マレーシアのホテル</a>';
bhotel[5] = '<a href="http://www.agoda.jp/asia/vietnam.html?site_id=1413978" target="_blank">ベトナムのホテル</a>';
bhotel[6] = '<a href="http://www.agoda.jp/asia/taiwan.html?site_id=1413978" target="_blank">台湾のホテル</a>';
bhotel[7] = '<a href="http://www.agoda.jp/asia/macau.html?site_id=1413978" target="_blank">マカオのホテル</a>';
bhotel[8] = '<a href="http://www.agoda.jp/asia/laos.html?site_id=1413978" target="_blank">ラオスのホテル</a>';
bhotel[9] = '<a href="http://www.agoda.jp/asia/maldives.html?site_id=1413978" target="_blank">モルディブのホテル</a>';
bhotel[10] = '<a href="http://www.agoda.jp/asia/indonesia/bali.html?site_id=1413978" target="_blank">バリ島のホテル</a>';


function t_hotel(n){ 
thotel.shuffle();
	for (i = 0; i < n; i = i + 1){
	document.write(thotel[i]);
	}
}

function b_hotel(n){
bhotel.shuffle();
	for (i = 0; i < n; i = i + 1){
	document.write(bhotel[i]);
	}
}


