function switchMovie () {

	alert ('Debug: Playing new movie...');
}

function showTitle (id, str) {
	var item = document.getElementById (id);
	item.innerHTML = str;
}	

function clearTitle (id) {
	showTitle (id, "");
}