//les options de la fenetre


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


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


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


	var toolsWindow;





function OpenToolsWindow(theFile) {
var done = false;

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

		toolsWindow = this.open(theFile, "toolsWindow", toolsWindowOptions);
		done = true;

	} 


	if (done==false) {
		toolsWindow.location.replace(theFile);
	}

	toolsWindow.focus(); 


}