
function ValidatePhoneChar(e)
{
	var KeyID = (window.event) ? event.keyCode : e.keyCode;
	
	return (KeyID >= 48 && KeyID <= 57) || KeyID == 13;	
}

function CancelEnterKey(e)
{
	var KeyID = (window.event) ? event.keyCode : e.keyCode;
	
	return (KeyID != 13);
}

function MaxCharsAllowed(txtBox, maxChars)
{
	if (txtBox.value.length <= maxChars) return true;
	
	return false;
}