// JavaScript Document

/* url video */
var nb = Math.round (Math.random ());
var videoURL = "film_estran-" + nb + ".flv";
//alert (video);

/* init variable ecran*/
var screenWidth = screen.width;
var screenHeight = screen.height;

var flashvars = {
	urlVideo: "" + videoURL + "",
	lEcran: screenWidth,
	hEcran: screenHeight
};

var params = {
	menu:"false",
	scale:"noscale",
	quality:"high",
	allowFullScreen:"true",
	allowscriptaccess:"sameDomain",
	wmode:"opaque",
	allownetworking:"all"
};

var attributes = {};

swfobject.embedSWF("./swf/video-presentation.swf", "video", "383", "231", "9.0.0", "./swf/expressInstall.swf", flashvars, params, attributes);
