 function toggleDiv(divIdName, oppositeDiv) {
  if (document.getElementById(divIdName).style.display === 'none') {
   document.getElementById(divIdName).style.display = 'block';
   //hides originating div
   document.getElementById(oppositeDiv).style.display = 'none';
  }
  else {
   document.getElementById(divIdName).style.display = 'none';
   //shows originating div
   document.getElementById(oppositeDiv).style.display = 'block';
  }
 }

 function confirmRedirect(value, message, form) {
  if (value) {
   window.location = value;
  }
 }

// Stuff for user search in my Account Page
function lookup(inputString) {
   if(inputString.length == 0) {
      $('#suggestions').fadeOut(); // Hide the suggestions box
   } else {
      $.post("index.php?m=Users&e=userSearch&userQuery="+inputString, {queryString: ""+inputString+""}, function(data) { // Do an AJAX call
         $('#suggestions').fadeIn(); // Show the suggestions box
         $('#suggestions').html(data); // Fill the suggestions box
      });
   }
}
//End stuff for user search in my account page

