//les options de la fenetre


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

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

	+ ",width=800,height=700";

	var CreditWindow;

function OpenCreditWindow(theFile) {

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

		CreditWindow = this.open(theFile, "CreditWindow", CreditWindowOptions);

	} 

	CreditWindow.location.replace(theFile);

	CreditWindow.focus();

}
