function makeFlash( source, width, height, radius, border, borderColor, type, alink, func, param, container ) {

	var flashvars = {
		path: source,
		width: width,
		height: height,
		radius: radius,
		border: border,
		borderColor: borderColor,
		type: type,
		alink: alink,
		func: func,
		param: param
	};
	
	var params = {
		wmode: "transparent",
		allowscriptaccess: "always"
	};
	
	var attributes = {
		id: container,
		name: container
	};

	swfobject.embedSWF("flash/picture.swf", container, width, height, "9.0.0", "expressInstall.swf", flashvars, params, attributes);
}