var newwindow;
function popup_focus(url, scroll)
{
	newwindow=window.open(url,'name','height=500,width=650' + (scroll ? ',scrollbars=yes' : ''));
	if (window.focus) {newwindow.focus()}
}

