//les options de la fenetre


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


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


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


	var FlashGDWindow;



function OpenFlashGDWindow(theFile) {


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


		FlashGDWindow = this.open(theFile, "FlashGDWindow", FlashGDWindowOptions);


	} 


	FlashGDWindow.location.replace(theFile);


	FlashGDWindow.focus(); 


}