function doNetDetect() {
	saOC.NETDetectNextNavigate();
	location.reload();
	}


var NS4 = (document.layers);
var IE4 = (document.all);
var win = window;
var n   = 0;
function findInPage(str) {
  var txt, i, found;

  if (str == "")
    return false;

  if (NS4) {

    if (!win.find(str))
      while(win.find(str, false, true))
        n++;
    else
      n++;

    if (n == 0)
      alert("Not found.");
  }

  if (IE4) {
    txt = win.document.body.createTextRange();

    for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
      txt.moveStart("character", 1);
      txt.moveEnd("textedit");
    }

    if (found) {
      txt.moveStart("character", -1);
      txt.findText(str);
      txt.select();
      txt.scrollIntoView();
      n++;
    }

    else {
      if (n > 0) {
        n = 0;
        findInPage(str);
      }

      else
        alert("Sorry, couldn't find your search.");
    }
  }
  return false;
}


function checkFields() {
missinginfo = "";
if (document.jumpbox.user.value == "") {
missinginfo ="You Failed To Specify A User To Begin.\n";
alert(missinginfo);
return false;
}
else return true;
}
function checkFields2() {
missinginfo = "";
if (document.jumpbox2.user.value == "") {
missinginfo ="You Failed To Specify A User To Begin.\n";
alert(missinginfo);
return false;
}
else return true;
}

function hideButton() {
	window.event.srcElement.style.display = "none";
	document.all.item("SubBtn").style.display = "";
}
