Function jumpFocus(obj, nextObj, ln) 
	if len(obj.value) = ln then
		nextObj.focus
	end if
end function
function jumpFocus2(obj)
	select case obj
		
		case "Airlinecode"
			jumpFocus document.all.Airlinecode,document.all.AWBPrefix,2
		case "AWBPrefix"
			jumpFocus document.all.AWBPrefix,document.all.AWBNumber,3
		case "AWBNumber"
			jumpFocus document.all.AWBNumber,document.all.AWBSubmit,8
	end select
end function