/**
 * @author ovidiuroatis
 */
function showVideo(videoP,videoS)
{
	var myVideoP = videoP;
	var myVideoS = videoS;
	document.getElementById(videoS).style.display = "none";
	document.getElementById(videoP).style.display = "block";
		
}