/* This javscript file is for the graduate video popups. */

function popitup(url) {
	newwindow=window.open(url,'name','height=385,width=385');
	if (window.focus) {newwindow.focus()}
	return false;
}


function videopopup(url) { // Graduates Programme pop-up
  var leftPos = (screen.width / 2) - 936
  var topPos = (screen.height / 2) - 565
  gradsWindow = window.open(url, "gradsWindow", "status=0,toolbar=0,menubar=0,location=0,resizable=1,height=565px,width=936px,left=" + leftPos + ",top=" + topPos)
}
