// video_tab.js
// 2/20/08
// Coded by SGB to simply change the src of an iframe
// to a given URL

function changeSrc(url) {
	document.getElementById("videoFrame").src = url;
}
