<!--
  function go_home() {
    var url = "/vads_main.html";
    var answer = window.confirm("This will end your session. Do you want to proceed?");
    if (answer == true) window.open(url, '_self');
  }

  function home(session) {
    if (window.confirm("This will end your session. Do you want to proceed?")) {
      var url = 'http://visualarts.ahds.ac.uk';
      window.open(url, '_self');
    }
  }

function openWindow(url) {
         newWindow = window.open(url, 'popup', 'location=yes,status=yes,toolbar=yes,menubar=yes,scrollbars=yes,titlebar=yes,alwaysRaised=yes,screenX=0,screenY=0,resizable=yes');
 }

//-->
