function showFlash(elementId, src, width, height, flashVars){
	$(elementId).html('');
	$(elementId).flash({
		swf: src,
		height: width,
		width: height,
		params: {
			flashvars: flashVars
		}
	});
}

