function Onload() {
}

function Onload_hansoku() {
}

function Onload_hansokuWT2() {

	//免許番号
	if (menkyo != "" && menkyo != " - ") {
		if (document.getElementById("id_menkyo")) {
			document.getElementById("id_menkyo").innerHTML = "宅建免許番号：　" + menkyo;
		}
	}

	var strToiawase = "";

	//TEL
	if (phone == "" || phone == " - ") {
	} else {
		strToiawase = "TEL:" + phone;
	}

	//FAX
	if (fax == "" || fax == " - ") {
	} else {
		if (strToiawase != "") {
			strToiawase = strToiawase + " ";
		}
		strToiawase = strToiawase + "FAX:" + fax;
	}

	document.getElementById("toiawase2").innerHTML = strToiawase;

	//HP
	if (homePage == "" || homePage == " - ") {
		if (document.getElementById("toiawase")) {
			document.getElementById("toiawase").innerHTML = "";
		}
	}

	//MAIL
	if (eMail == "" || eMail == " - ") {
		if (document.getElementById("toiawase3")) {
			document.getElementById("toiawase3").innerHTML = "";
		}
	}

}
