function rr_openWin (URL, name, width, height) {
	var newWin = window.open(URL, name, "width="+width+",height="+height+",scrollbars=yes");
	newWin.focus();
}