//les options de la fenetre





var videoWindowOptions = "toolbar=no,location=no,directories=no,status=no" 

	+ ",menubar=no,scrollbars=yes,resizable=yes" 

	+ ",width=770,height=540";

	var videoWindow;



function OpenVideoWindow(theFile) {

var done = false;

	if ((videoWindow == null) || (videoWindow.closed)){ 

		videoWindow = this.open(theFile, "videoWindow", videoWindowOptions);

		done = true;

	} 



	if (done==false) {

		videoWindow.location.replace(theFile);

	}



	videoWindow.focus(); 

}