

// Function for delete confirmations
function delConfirm(confirmMsg)
{
	if (confirm(confirmMsg))
	{
		return true;
	}
	else
	{
		return false;
	}	
}



// Function that moves you to the next phone number filed
function nextPhoneField(curField)
{	
	if(document.register.curField.value.length == 2)
	{	
		curFieldLen = document.curField.value.length;
		curFieldLastNum = curField[curFieldLen];
		curField[curFieldLen] = curField[curFieldLen++];		
		nextField = curField[curField];	
		document.nextField.focus();
	}
	
}