//http://wiki.dreamhost.com/Flash_Media_Player
function CaricaVideo(fileflv, width, height, DIVtarget) {
	var s1 = new SWFObject("mediaplayer.swf","mediaplayer", width, height, "8");
		s1.addParam("allowfullscreen","true");
		s1.addVariable("width",width);
		s1.addVariable("height",height);
		s1.addVariable("file","/biteb/public/file"+fileflv);
		s1.write(DIVtarget);
}
