// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// Javascript for the popup window for our old Caltech interactive map
function MapLaunch(filename,windowname,tool){
  if (tool==1) {
    imagePopUp=window.open(filename,windowname,'toolbar=yes,location=no,directories=no,status=no,width=660,height=460,copyhistory=no,scrollbars=yes,resizable=yes');
  } else {
    imagePopUp=window.open(filename,windowname,'toolbar=no,location=no,directories=no,status=no,width=660,height=460,copyhistory=no,scrollbars=yes,resizable=yes');
  }
}

// always blow out of frames
if (window != top) top.location.href = location.href;

window.onload = focusForm;

function focusForm() {
    if(document.getElementById("login")){document.getElementById("login").focus();} 
}
