$(document).ready(function(){
var newWin;  
  
  
  function openWindow(w, h, url)
  {
    windowleft = (screen.width - w)/2;
    windowtop = (screen.height - h)/2;
    settings = '"toolbar=no,directories=no,menubar=no,scrollbars=1,resizable=yes,status=yes,location=no,width='+w+',height='+h+',left='+windowleft+',top='+windowtop+'"';
    closeWindow();
    
    newWin = window.open(url,'myForm',settings);
    
    newWin.focus();
  
  };
  
  
  function closeWindow()
  {
    if (newWin && !newWin.closed) {
    newWin.close();
    };
  };
  
  
  $('#edu').click(function(){
    openWindow(856, 450, '/casestudies/education.html');
  });
  
  $('#health').click(function(){
    openWindow(856, 450, '/casestudies/health.html');
  });
  
  $('#tc').click(function(){
    openWindow(856, 450, '/terms.html');
  });
  
  $('#education').click(function(){
    openWindow(856, 450, '/casestudies/education.html');
  });
  
  $('#health1').click(function() {
    openWindow(856, 450, '/casestudies/health.html');
  });
  
  
  
});

