//les options de la fenetre


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


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


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


	var FlashWindow;



function OpenFlashWindow(theFile) {


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


		FlashWindow = this.open(theFile, "FlashWindow", FlashWindowOptions);


	} 


	FlashWindow.location.replace(theFile);


	FlashWindow.focus(); 


}