var ident=null;
var identCount = 0;
 
function startFocusRetain() {
  //focus();
  ident=self.setTimeout('resetIdent()', 100);
}

function resetIdent() {
  if (identCount++<0 ) {
    ident = null;
    startFocusRetain();
  }  

  else {
    location='http://www.legalzoom.com/jump.asp?iRefer=1435&sURL=/index.html';
  }
}
