//<script language=javascript>
//trick - add as the top line on the .js file

function func1(textName, textLen) 
{
	  
	if ((textName == "aphone1") && (textLen == 3)) {
		document.contact.aphone2.select();
		}
	if ((textName == "aphone2") && (textLen == 3)) {
		document.contact.aphone3.select();
		}
		
}