function open_fixed_win(url, width, height, scrollbar){
	  referer = window.open(url, 'win', 'width='+width+', height='+height+', scrollbars='+scrollbar)
	  referer.moveTo((screen.availWidth-width)/2, (screen.availHeight-height)/2);
	  referer.focus();
}