
function openHelp(helpSection, helpPage)
{
	window.open('help/helppage.aspx?section=' + helpSection + '&helppage=' + helpPage,'HelpWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=450,height=400');
}


function nextField(thisField, nextField, maxLength)
{
  if(thisField.value.length == maxLength)
  {
    if(nextField != null)
    {
      nextField.focus();
    }
  }
}

function showErrorAlert()
{
  alert("An error has occurred with your details.");
}
