function chk_aimai() {
var y = document.forms[1].qmoji.value;
if(y=='') { alert('検索するバス停名の一部を入力してください。'); return false; }
else if(y!=='') {
	//if(y.match(/[^0-9]/i)) { alert('不正な文字です。\n\n検索するバス停名の一部を入力してください。'); return false; }
	if(y.match(/</i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/>/i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/;/i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/”/i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/’/i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/＜/i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/＞/i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/；/i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/”/i)) { alert('不正な文字列です。'); return false; }
	else if(y.match(/’/i)) { alert('不正な文字列です。'); return false; }
	
	

}
else { return true; }
}


function PDF_W(data) {
window.open('/LocalBus/ImgData/'+data+'.html','PDF_DATA','width=800,height=900,menubar=no,scrollbars=yes,location=no');
}

function QR_img() {
javascript:window.open('/Images/QRcode.png','qr','width=130,height=130,menubar=no,scrollbars=yes,location=no');
}