function checkPhone(formName, thisElm, maxLength, nextElm)
{
	if (thisElm.value.length == maxLength)
	{
		eval("document." + formName + "." + nextElm).focus();
	}
	return true;
}



