function reproducirVideo(src, target, width, height)
{
	var oFlash;
	oFlash = new SWFObject(src, "", width, height, "7", "", true);
	with(oFlash)
	{
		addParam("menu", "false");
		addParam("wmode", "transparent");
		write(target);
	}
}
