// JavaScript Document

function swapImage(imagename, imagesrc, DirectoryPath) {
	if (document.images) {
		eval("document."+imagename+".src='"+DirectoryPath+"/"+imagesrc+"'");
		
	}
}

function loadVideo(docObject, str, autoplay) {
	
	document.getElementById(docObject).loadVideo(str, autoplay);
	
}

