
function password_Validate(sender, args) {
	var valid = true;
	var txt = document.getElementById('txtPassword');
	if ( txt.value.length < 6 ) {
		txt.focus();
		txt.select();
		valid = false;
	}
	args.IsValid = valid;
	return;
}