// toPhoneBox function
// brad thompson 07/09/10
// snippet from http://codingforums.com/showthread.php?t=93108
// inputs are the form box and the value in the box
// compares the length of the box with the length of the string in the box
// if the box size and length of string are equal it skips focus to the next box
//
function toPhoneBox(elmnt,content)
{
if (content.length==elmnt.maxLength)
	{
	next=elmnt.tabIndex
	if (next<document.forms[0].elements.length)
		{
		document.forms[0].elements[next].focus()
		}
	}
}
