// JavaScript Document

function moveOnMax(field,nextFieldID){
  if(field.value.length >= field.maxLength){
    document.getElementById(nextFieldID).focus();
  }
}


function openStepPlan (url) {
	window.open (url,'planswindow','status=1,toolbar=0,scrollbars=1,width=760,height=600');
	return false;
}

