function setPIN01(value) {
	var length = document.getElementById("ctl00_cphBody_txtPIN").value.length;
	if (length <= 3) {
		document.getElementById("ctl00_cphBody_txtPIN").value += value;
	}
	$("#ctl00_cphBody_txtPIN")[0].focus();
	$("#ctl00_cphBody_txtPIN")[0].blur();
	return false;
}
function clearPIN01() {
	var length = document.getElementById("ctl00_cphBody_txtPIN").value.length;
	if (length >= 1) {
		document.getElementById("ctl00_cphBody_txtPIN").value = '';
	}
	$("#ctl00_cphBody_txtPIN")[0].focus();
	$("#ctl00_cphBody_txtPIN")[0].blur();
	return false;
}
