var CreatorWindow=null;
function Show_NonBiblio(URL){
	if ((self._creator) && (!self._creator.closed)) {
		CreatorWindow = self._creator;
		CreatorWindow.location = URL;
		CreatorWindow.focus();
	}
	else {
      	CreatorWindow = window.open(URL);
		CreatorWindow.focus();
	}

}

