/*
	This script just redirects links to change the movie in the browser window.
*/
	
function changeMovie(newIframeSrc, newTitle) {
	var movieFrame = document.getElementById("movieframe");
	movieFrame.src = newIframeSrc;
	//window.frames[nameOfIframe].src = newIframeSrc;
	
	changeTitle(newTitle);
}

function changeTitle(newTitle) {
	textLoc = document.getElementById("vidTitle");
	textLoc.firstChild.nodeValue = newTitle;
}
