// JavaScript Document

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

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