﻿
/* top area */
function areabunki(){
	var area = new Array();
	area[1]="setagaya";
	area[2]="shibuya";
	area[3]="meguro";
	area[4]="minato";
	area[5]="shinjuku";
	area[6]="nakano";
	area[7]="toshima";
	area[8]="suginami";
	area[9]="shinagawa";
	area[10]="oota";
	area[11]="bunkyo";
	area[12]="nerima";
	if (document.formar.area.options[document.formar.area.selectedIndex].value>=1) {
		document.formar.action = "http://www.unihouse.co.jp/ichiran/"+area[document.formar.area.options[document.formar.area.selectedIndex].value]+".html";
	} else {
		document.formar.action = 'http://www.unihouse.co.jp/ichiran/index.html';
	}
}

/* blank link */
function blLink() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&	anchor.getAttribute("rel") == "blurl") anchor.target = "_blank";
	}
}
window.onload=blLink;

