function video(urlvideo, contenitore, percorso) {
	var flashvars = { videoURL: urlvideo, auto_play: "stop" };
	var attributes = { id: contenitore, name: contenitore };
	var percorso = percorso + '/video.swf';
	swfobject.embedSWF( percorso, contenitore, "340", "280", "9.0.0", false, flashvars, false, attributes);
}
function videoHome(urlvideo, contenitore, percorso, width, height) {
	var flashvars = { videoURL: urlvideo, auto_play: "stop" };
	var attributes = { id: contenitore, name: contenitore };
	var percorso = percorso + '/video.swf';
	swfobject.embedSWF( percorso, contenitore, width, height, "9.0.0", false, flashvars, false, attributes);
}
function youtube(idvideo, contenitore) {
	var params = {
		allowScriptAcess: "always",
		allowFullScreen: "true",
		wmode: "transparent"
	};
	var attributes = {
		id: contenitore,
		name: "YOUTUBE"
	};
	swfobject.embedSWF("http://www.youtube.com/v/" + idvideo + "&fmt=22&showinfo=0&fs=1", contenitore, "340", "280", "9.0.0", false, false, params, attributes);
}
function videoStandard(urlvideo, contenitore, width, height ) {
	var params = {
		allowScriptAcess: "always",
		allowFullScreen: "true",
		wmode: "transparent"
	};
	var attributes = {
		id: contenitore,
		name: "video"
	};
	swfobject.embedSWF(urlvideo , contenitore, width, height, "9.0.0", false, false, params, attributes);
}