function playVideo(videoPlayer,videoFile,firstFrame,vidWidth,vidHeight,element) {
	
	var insertCode = "<OBJECT type='application/x-shockwave-flash' height='" + vidHeight + "' width='" + vidWidth + "' data='" + videoPlayer + "' id='flashVideoPlayer'><param NAME='Movie' VALUE='" + videoPlayer + "'><param NAME='Src' VALUE='" + videoPlayer + "'><param NAME='Quality' VALUE='High'><param name='wmode' value='transparent'><param name='flashvars' value='playVid=" + videoFile + "&vidWidth=" + vidWidth + "&vidHeight=" + vidHeight + "&img=" + firstFrame + "'></OBJECT>";
	document.getElementById(element).innerHTML = insertCode;
	
}
