function initLocal( sElementID ) {

  init();

  // if form exists...
  if (document.getElementById( 'frmSubmit' )) {

    initElement();

    document.getElementById( 'frmSubmit' ).reset();
    document.getElementById( sElementID ).focus();
  }
}
