﻿// JScript File
function validateLength(sender, args)
{
	try
	{
		if (document.getElementById(sender.controltovalidate).value.length > sender.maxlength)
		{
			args.IsValid = false;
			return false;
		}
		else
		{
			args.IsValid = true;
			return true;
		}
	}
	catch (ex)
	{
		args.IsValid = true;
		return true;
	}
}


function displayCCVHelp()
{
	window.open('ccv.htm', 'popup', 'width=250,height=300,scrollbars=no,resizable=no');
}