﻿
topics = new Array();
url = new Array();

// 本文記載欄----------------------------

topics[0]="Mothers";
url[0]="./listing/mothers/index.html";
topics[1]="TOKYO AIM";
url[1]="./rules/newmarket/index.html";
topics[2]="ETFs (Exchange Traded Funds) ";
url[2]="./rules/etfs/index.html";
topics[3]="REIT(Real Estate Investment Trust)";
url[3]="./rules/reits/index.html";
topics[4]="Fact Book";
url[4]="./market/data/factbook/index.html";
topics[5]="Tokyo Market Information";
url[5]="./market/mkinfo/tmi/index.html";
topics[6]="arrowhead (the Next Generation Trading System)";
url[6]="./rules/equities/arrowhead/index.html";
topics[7]="Electronic Voting Platform";
url[7]="./listing/meeting/index.html";
topics[8]="Introduction of Free Float Adjusted Indices";
url[8]="./rules/derivatives/topixf/float.html";

//---------------------------------------

preTag = '<div class="quicklink"><ul>';
biTag='<li><a href="'
blTag='<li>';
clTag = '">';
clATag = '</a>'
clListTag = '</li>';
endTag = '</ul></div>';

Rquiklink = preTag;

for(i=0; i<topics.length; i++){
	if( url[i] != "none" ){
		Rquiklink += biTag + url[i] + clTag ;
	}else{
		Rquiklink += blTag ;
	}
	Rquiklink += topics[i] +  clATag ;
	Rquiklink += clListTag;
}
Rquiklink += endTag;

document.write(Rquiklink);
