function setBanner() {
	url = "http://www.hokkaido-365.com/cgi-bin/banner.cgi?p=L1";
	new Ajax.Request(url, { method:"get", onComplete:setBannerL1 });
	url = "http://www.hokkaido-365.com/cgi-bin/banner.cgi?p=S1";
	new Ajax.Request(url, { method:"get", onComplete:setBannerS1 });
	url = "http://www.hokkaido-365.com/cgi-bin/banner.cgi?p=S2";
	new Ajax.Request(url, { method:"get", onComplete:setBannerS2 });
	url = "http://www.hokkaido-365.com/cgi-bin/banner.cgi?p=S3";
	new Ajax.Request(url, { method:"get", onComplete:setBannerS3 });
	url = "http://www.hokkaido-365.com/cgi-bin/banner.cgi?p=S4";
	new Ajax.Request(url, { method:"get", onComplete:setBannerS4 });
	url = "http://www.hokkaido-365.com/cgi-bin/banner.cgi?p=S5";
	new Ajax.Request(url, { method:"get", onComplete:setBannerS5 });
	url = "http://www.hokkaido-365.com/cgi-bin/banner.cgi?p=S6";
	new Ajax.Request(url, { method:"get", onComplete:setBannerS6 });
	url = "http://www.hokkaido-365.com/cgi-bin/banner.cgi?p=S7";
	new Ajax.Request(url, { method:"get", onComplete:setBannerS7 });
	url = "http://www.hokkaido-365.com/cgi-bin/news/list.cgi";
	new Ajax.Request(url, { method:"get", onComplete:setLocalNews });
}

function setBannerL1(request) {
	$("L1").innerHTML = request.responseText;
}

function setBannerS1(request) {
	$("S1").innerHTML = request.responseText;
}

function setBannerS2(request) {
	$("S2").innerHTML = request.responseText;
}

function setBannerS3(request) {
	$("S3").innerHTML = request.responseText;
}

function setBannerS4(request) {
	$("S4").innerHTML = request.responseText;
}

function setBannerS5(request) {
	$("S5").innerHTML = request.responseText;
}

function setBannerS6(request) {
	$("S6").innerHTML = request.responseText;
}

function setBannerS7(request) {
	$("S7").innerHTML = request.responseText;
}

function setLocalNews(request) {
	$("LocalNews").innerHTML = request.responseText;
}

function openLink1(id, link) {
	url = "http://www.hokkaido-365.com/cgi-bin/counter.cgi?no=" + id;
	new Ajax.Request(url, { method:"get" });
	window.open(link, "", "toolbar=1, status=1, menubar=1, location=1, resizable=1, width=550, height=560");
}

function openLink2(id, link) {
	url = "http://www.hokkaido-365.com/cgi-bin/counter.cgi?no=" + id;
	new Ajax.Request(url, { method:"get" });
	window.open(link);
}