// Opens new centered windows of 500x400px size
// MAT-COM:	Probably won't open centered windowses under NN
function reflist_window(url, name)
{
	var center_w = (screen.width / 2) - 250;
	var center_h = (screen.height / 2) - 200;
	var tmp_str = 'height=400,width=500,left=' + center_w + ',top=' + center_w;
	
	window.open(url, name, tmp_str, false);
}

