function login(locale) {

	//strURL = "https://" + location.hostname + "/index2.html";
	strURL = "https://" + location.host + "/index2.html";
	if ( locale == 'US' ) {
	//strURL = "https://" + location.hostname + "/index2_US.html";
	strURL = "https://" + location.host + "/index2_US.html";
	}

	strOpt = "status=yes";
	strOpt += ",scrollbars=yes";
	strOpt += ",resizable=yes";
	MainWinName = window.open( strURL, "BTWLOGIN", strOpt);
	MainWinName.focus();
}
