/* ===============================================
	文字色設定
=============================================== */
	function setLayerColor(id,c){
		if(document.all || document.getElementById){
			if(document.all){
				document.all(id).style.color = c;
			} else if(document.getElementById){
				document.getElementById(id).style.color = c;
			}
		}
	}

	function writeFalsh(wd){
		document.write(wd);
	}

function check_value(url){
	if(document.tr2.denpyoNo.value == '送り状番号を入力'){
		document.tr2.denpyoNo.value ="";
	}
	var str = document.tr2.denpyoNo.value;
	var str2 ="";
	var x ="";
	var y="";
	var i =0; var P=0;
	var len= str.length;
	var mL='０１２３４５６７８９０';
	var mS='01234567890';
	while(i < len){
		x = str.charAt(i);
		if(mS.indexOf(x,0) >-1){
			str2 += x;
		}else{
			P = mL.indexOf(x,0);
			if(P > -1){
				x =mS.charAt(P);
				str2 += x;
			}
		}
		i++;
	}
	if(str2 != ''){
		document.tr2.denpyoNo.value =str2;
		if(url == "confirm"){
			url = 'https://info.jpexpress.jp/confirm/confirmList.html?denpyoNo=' + str2;
		}
		if(url == "redeliver"){
			url = 'https://info.jpexpress.jp/redeliver/redeliverTop.html?denpyoNo=' + str2;
		}
	}else{
		if(url == "confirm"){
			url = 'https://info.jpexpress.jp/confirm/confirmIndex.html';
		}
		if(url == "redeliver"){
			url = 'https://info.jpexpress.jp/redeliver/redeliverTop.html';
		}
	}
	location.href= url;
}
;