function idLocation() {
	if (location.hash) {
		location.href = location.hash;
	}
}

//お客様の声の戻るボタン
function OpenWin(code){
	if(document.referrer && document.referrer != ""){
		var url = document.referrer;
		window.location.href = url + "#" + code;
	}else{
		window.location.href = "/netshop/";
	}
}