function embed_flashVideo(videoFile, width, height, movieID, targetID) {

	var swfPath = "/Resources/Cultivate/flash/"
	var swfName = "videoplayer.swf";
	//var videoFile = "s6v8.flv";
	
	// MovieID: this is the id which SwfObject will attach to you flash object
	// You can target this in CSS to specificy a width and height (etc) for your flash movie
	//var movieID = "flashMain"; 
	
	/***********************************************************
					  You don't need to touch these
	 ***********************************************************/
	 
	//var width = "100%";  // flash movie is non-scaling. use CSS to determine container size
	//var height = "100%"; // flash movie is non-scaling. use CSS to determine container size
	var flashVersion = "8.0.0";
	var flashvars = {file:videoFile};
	var params = {};
	var attributes = {};
	attributes.id = movieID;
	
	
	swfobject.embedSWF(swfPath+swfName,targetID,width,height,
						flashVersion,swfPath+"expressInstall.swf",
						flashvars, params, attributes
					   );
}
