function drawVideoBanner(p_folderName, p_fileName, p_width, p_height, p_element, p_version, p_videoID){
	
	var flashVars = "filePath=/swf/video/" + p_folderName;	// All files can be found in the predetermined path
		flashVars += "&fileName=" + p_fileName;
		flashVars += "&skinName=MojaveExternalPlaySeekMute"; //+ p_vidName;
		flashVars += "&websiteRender=true";
		flashVars += "&videoID=" + p_videoID;
		
	if(p_version == 8){
		var filePath = "/swf/video/videoPlayer8_" + p_width + "_" + p_height + ".swf";
	}else{
		var filePath = "/swf/video/videoPlayer_" + p_width + "_" + p_height + ".swf";
	}

	if (swfobject.hasFlashPlayerVersion("8.0.0")) {
		var att = { data:filePath, width:p_width, height:p_height };
		var par = { flashvars:flashVars, quality:"high", wmode:"transparent"};
		var myObject = swfobject.createSWF(att, par, p_element);
	}
}

function nextMovie(p_path){
	document.location.href = p_path;
}