var bWinEmail = 0;

function contactMichael(){
  if(bWinEmail == 0){
  	hWinEmail = window.open('https://kelley.iu.edu/mlittell/email/email.htm', 'hWinEmail', 'toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=557,height=600,top=20,left=20,screenX=20,screenY=20');
    bWinEmail = 1;
  }
  else{
    if(hWinEmail.closed){
      hWinEmail = window.open('https://kelley.iu.edu/mlittell/email/email.htm', 'hWinEmail', 'toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=1,width=557,height=600,top=20,left=20,screenX=20,screenY=20');
    }
    else{
      hWinEmail.focus();
    }
  }
  startAnimatedGIF();
}