// JavaScript Document

function quickTime(name) {
	
	var url = "video/" + name + ".mov";
	var newWin = window.open(url, "QuickTime", "height=440,width=402");
	newWin.focus();
	
}

function gohome() {
	
	window.location.href = "http://www.utexas.edu";
	
}