
function srchVacancies()
{
	document.theForm.submit();
}

function theMenu(daMenu,daFunc)
{

	document.theForm.theMenu.value = daMenu;
	document.theForm.theFunc.value = daFunc;
  /* document.theForm.theSearch.value = "";  */
	document.theForm.submit();
}

function theVac(daMenu,daFunc,daVac)
{

	document.theForm.theMenu.value = daMenu;
	document.theForm.theFunc.value = daFunc;
	document.theForm.tmpVac.value = daVac;
  /* document.theForm.theSearch.value = "";  */
	document.theForm.submit();
}

function theSearch(daType)
{
	document.theForm.theMenu.value = 'SERVICES';
	document.theForm.theFunc.value = 'Recruit';
  document.theForm.theSearch.value = daType;
	document.theForm.submit();
}

function theHelp(daMsg)
{
  if (daMsg == "Fname")
  {
    daMsg = "<h3>First Name</h3><ul><li>This is a required field.</li><li>It will be used on documentation</li></ul>";
  }
  else
  if (daMsg == "Lname")
  {
    daMsg = "<h3>Last Name</h3><ul><li>This is a required field.</li><li>It will be used on documentation</li></ul>";
  }
  else
  if (daMsg == "Email")
  {
    daMsg = "<h3>Your Email is important</h3><ul><li>This is a required field.</li><li>Please ensure you email is typed correctly</li></ul>";
  }
 else
  if (daMsg == "Phone")
  {
    daMsg = "<h3>Phone</h3><ul><li>Please enter at least one phone number.</li><li>Two phone numbers will speed up the employment process.</li></ul>";
  }
 else
  if (daMsg == "Cphone")
  {
    daMsg = "<h3>Cell Phone</h3><ul><li>Please enter at least one phone number.</li><li>Two phone numbers will speed up the employment process.</li></ul>";
  }
 else
  if (daMsg == "Note")
  {
    daMsg = "<h3>Cover Letter</h3><ul><li>This is your time to shine</li></ul>";
  }
 else
  if (daMsg == "Resume")
  {
    daMsg = "<h3>Example Files</h3><ul><li>Word Document(.doc)</li><li>Text File(.txt)</li><li>Adobe(.pdf)</li></ul>";
  }
 else
  if (daMsg == "Pwd")
  {
    daMsg = "<h3>You Password</h3><ul><li>Please make the password memorable</li><li>If this is the first time you are applying, remember it well.  It will be the same password for all other vacancies.</li><li>You must contact MBA for a password change.</li></ul>";
  }
  else
  {
    daMsg = "<h3>3 Steps to Apply</h3><ul><li>Login or Create Login</li><li>Enter Information</li><li>Attach you Resume</li><li>Please note that a new login will be created if your email is new to the mba system</li></ul>";
  }
  document.getElementById('theMsg').innerHTML = daMsg;
}