function goLogin() {
// FormのLOGINボタン押下時にクッキーを削除してからPOSTする
// Loginし直し時に必要
		cName = "teinWebLogonCookie=";
		exp="Mon, 31-Dec-1990 23:59:59 GMT";
		document.cookie = cName + "; expires=" + exp + "; path=/; domain=tein.co.jp";
	document.cookie = "teinWebCustomerName=x; path=/; domain=tein.co.jp; expires=" + exp; // 顧客名クッキー削除

// POST
	var hiddenObj = document.getElementById("hidden");
	hiddenObj.innerHTML =
	 '<input type="hidden" name="_teiReqURL" value="https://www.tein.co.jp/B2B/b2bClientIndexWelcome.html">'
	 + '<input type="hidden" name="_teiReqMethod" value="GET">'
	 + '<input type="hidden" name="_teiGetAuth" value="LOGIN">';
	document.f.action=('https://www.tein.co.jp/B2B/authContents/login.cgi');
	document.f.submit();
	return;
}
