function open_new(k){
window.open(k,'_blank','width=1500, height=800, toolbar=0, location=0, status=0,menubar=0,scrollbars=0,resizable=0');
}

function stopSpam(email) {
  var mail1 = email; // Enter first part of e-mail address
  var mail2 = "seas.upenn.edu"; // Enter second part of e-mail address
  var displaytext = mail1 + "@" +mail2; // Enter text to display on page
  document.write(displaytext)
  }

function MOver() {
  var nav = document.getElementById("submenu");
  var pan = document.getElementById("panel");
  nav.style.visibility = "visible";
  pan.style.background = "url(img/menu.jpg) repeat-x top";
  }
 
function MOut() {
  var nav = document.getElementById("submenu");
  var pan = document.getElementById("panel");
  nav.style.visibility = "hidden";
  pan.style.background = "#FFFFFF";
  }
  
function subMenu() {
  document.write("<table id='navtab'><tr>");
  document.write("<td></td>");
  document.write("<td class='big'>&nbsp;&nbsp;&nbsp;<a href='http://uav-planning.no-ip.org:8080/uav-planning' target='_blank'><strong>Applied</strong></a>&nbsp;&nbsp;&nbsp;</td>");
  document.write("<td><a href='http://uav-planning.no-ip.org:8080/uav-planning' target='_blank'>Autonomouos Aerial Vehicles</a>&nbsp;</td>");
  document.write("<td><a href='http://uav-planning.no-ip.org:8080/uav-planning' target='_blank'>Autonomouos Ground Vehicles</a>&nbsp;</td>");
  document.write("<td><a href='http://uav-planning.no-ip.org:8080/uav-planning' target='_blank'>Multi-agent Vehicles</a>&nbsp;</td>");
  document.write("<td class='big'>&nbsp;&nbsp;&nbsp;<a href='searches.html'><b>Theoretical</b></a>&nbsp;&nbsp;&nbsp;</td>");
  document.write("</tr></table>");
}