var nowURL = location.href ;
tempURL = nowURL ;
for (i=0; i<3; i++) {
	nowStrLength = tempURL.length ;
	nowPosition = tempURL.indexOf("/") ;
	if (i != 2) {
		tempURL = tempURL.slice(nowPosition+1, nowStrLength) ;
	} else {
		tempURL = tempURL.slice(0, nowPosition) ;
	}
}
newBaseURLForHeader = "http://" + tempURL + "/website/pchome" ;
newSSLBaseURLForHeader = "https://" + tempURL + "/website/pchome" ;
//alert(newBaseURLForHeader) ;
