var ADL_db = new Array();
var ADL_con;

ADL_creater(0,"旅游指南以及地图的下载","从这里可以下载旅游指南和各地区詳細地图。","/ch/about/guidebook.html","guidebook.jpg");
ADL_creater(1,"Osaka Fan Club","大阪的網上雜誌","http://www.osaka-etoko.ne.jp/ch/","ch_funclub.jpg");

ADL_con = ''
+ ADL_db[0]
+ ADL_db[1];

function ADL_creater(i,s,ex,url,f) {
	if (ex == "") ex = s;
	ADL_db[i] = '<li id="ad'+i+'">'
	+ '<a href="/ad/ad.php?url='+escape(url)+'" title="'+ex+'" target="_blank">'
	+ '<img src="/ad/'+f+'" alt="'+s+'" width="150" height="80" /></a><p class="ad_title">'
	+ '<a href="/ad/ad.php?url='+escape(url)+'" title="'+ex+'" target="_blank">'+s+'</a></p>'
	+ '<img src="/common/images/ad_line.gif" alt="" width="150" height="6" /></li>';
}

document.write('<h3 id="ad_title">Advertisement</h3><ul id="ad">'+ADL_con+'</ul>');

