function j_focus(o_target)
{
o_target.focus();
o_target.select();
}

function j_hide(s_menu) 
{
document.getElementById(s_menu).style.visibility = "hidden";
}

function j_show(s_menu) 
{
var o_menu = document.getElementById(s_menu);
var i_x = o_menu.offsetLeft;
var i_y = o_menu.offsetTop;
var o_temp = o_menu.offsetParent;
while (o_temp !== null)
  {
  i_x += o_temp.offsetLeft;
  i_y += o_temp.offsetTop;
  o_temp = o_temp.offsetParent;
  };
i_x = i_x - 1;
i_y = i_y + 25;
var o_submenu = document.getElementById("x" + s_menu);
o_submenu.style.left = i_x + "px";
o_submenu.style.top = i_y + "px";
o_submenu.style.visibility = "visible";
}

function j_submit(o_main)
{
  var s_email = o_main.value
  if (s_email == "")
    {
      s_email = "";
    }
  else
    {
      s_email = "&e=" + s_email;
    };
  window.location="https://www.numitec.com/nm_secure_login.aspx?a=e" + s_email;
}



