function fc_code() {
	var lang = location.href;
	var q_item_code = $F('v_item_code');
	if(!q_item_code) {
		if (lang.match(/vhostserv/i)) {
			alert('型式名を入力してください。');
		} else {
			alert('Please input a Model Number.');
		}
		return false;
	}
//	$('q_item_code').value = q_item_code;
	
//	document.code.q_item_code.value = q_item_code;
	
//	document.code.submit();
	
//	return true;
	
}
function fc_dno() {
	var lang = location.href;
	var q_dno = $F('v_dno');
	if(!q_dno) {
		if (lang.match(/vhostserv/i)) {
			alert('ダイレクトナンバーを入力してください。');
		} else {
			alert('Please input a Direct Number.');
		}
		return false;
	}
//	$('q_dno').value = q_dno;
	
//	document.dno.q_dno.value = q_dno;
	
//	document.dno.submit();
	
//	return true;
}