// JavaScript Document



// バナー
var banner_info = new Array(
	new Array("kaplan.gif", "kaplan", 170, 110, "http://www.kaplaninternational.com/university/preparation/uk/programs.aspx"),
	new Array("ioe.gif", "ioe", 170, 110, "http://www.ioelondon.jp/index.html"),
	new Array("southampton.jpg", "southampton", 170, 110, "http://www.southampton.ac.uk/international/"),
	new Array("macquarie.gif", "macquarie", 170, 110, "http://www.international.mq.edu.au/BEO")	// 最後
	);

// バナーの数
var count = banner_info.length;

for (i=0; i<100; i++) { //　100はシャッフルする回数
	n1 = Math.floor(Math.random() * count);
	n2 = Math.floor(Math.random() * count);
	n = banner_info[n1];
	banner_info[n1] = banner_info[n2];
	banner_info[n2] = n;
}




// バナー表示
function ShowImage(order){
	if (banner_info[order][4]) {
		document.write('<a href="/fair/goto.php?iid=' + banner_info[order][1] + '&order=' + order + '&url=' + banner_info[order][4] + '" target="_blank">');
	}
	document.write('<img src="/fair/banner.php?filename=' + banner_info[order][0] + '&iid=' + banner_info[order][1] + '&order=' + order + '" width="' + banner_info[order][2] + '" height="' + banner_info[order][3] + '">');
	if (banner_info[order][4]) {
		document.write('</a>');
	}
}



