function playVideo(player,video,still,width,height,obj) {
	
	var videoPlayer = player;
	var videoFile = video;
	var firstFrame = still;
	var vidWidth = width;
	var vidHeight = height;
	
	insertFlash("<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>", obj);
	document.getElementById(obj);
	
}