function DateAutoFocus(thisid, nextid){
	thisobj = document.getElementById(thisid);
	nextobj = document.getElementById(nextid);
	if (thisobj.value.length==thisobj.maxLength){
			nextobj.focus();
	}
}