function PopupWindowBibliobox(page,name,width,height) 
{
	F = window.open(page,name,"scrollbars=yes,menubar=no,toolbar=no,width=" + width + ",height= " + height + "");
	F.moveTo((screen.width - 400) / 2,(screen.height - 400) / 2);
	//F = window.open(page,name,"scrollbars=yes,menubar=no,toolbar=no,width=" + width + ",height= " + height + ",left=100,top=100")
}

  //F = window.open(page,name,"scrollbars=yes,menubar=no,toolbar=no,width=" + width + ",height= " + height + ",left=100,top=100")
  //F.moveTo((screen.width - 300) / 2,(screen.height - 300) / 2);

/*function newwindow() {
	nw = window.open(url,"popFrameless","fullscreen";
	nw.resizeTo(300,300);
	nw.moveTo((screen.width - 300) / 2,(screen.height - 300) / 2);
	window.onunload = function(){nw.close()
}*/