// JavaScript Show or Hide Video

function showVideo1(x) {
	document.getElementById(x).style.overflow='hidden';
	document.getElementById('videoPlayer1').style.display='block';
}

function showVideo2(x) {
	document.getElementById(x).style.overflow='hidden';
	document.getElementById('videoPlayer2').style.display='block';
}

function hideVideos() {
	window.location.href="?";
}
