<html>
<head>
<title></title>
<script language="JavaScript"><!--
function checklength(objnm){
if(objnm == "aa"){
if(document.forms[0].aa.value.length >= 4){
document.forms[0].bb.focus();
return true;
}

}
if(objnm == "bb"){
if(document.forms[0].bb.value.length >= 4){
return false;
}

}}//--></script>
</head>
<body>
<FORM>
<input type="text" name="aa" onkeyup="return checklength('aa');" >-<input type="text" name="bb" onkeydown="return checklength('bb');">
</FORM>
</body>
</html>