//copyright 2004 Fuzzy Bean, LLC



function bbr()
{
	w=screen.availwidth+"px";
	h=screen.availheight+"px";

	var bbbr = open("","test2");

	if (bbbr)
	{
		bbbr.blur();
		bbbr.location = myurl;
		window.focus()
	}
	else
	{
		if (exit)
		{
			bbbr = window.showModalDialog(""+myurl+"","","dialogHeight: "+h+"; dialogWidth: "+w+"; dialogTop: 50px; dialogLeft: 100px; edge: Raised; center: Yes; help: Yes; resizable: No; status: No;");
			exit=false;
			window.focus();
		}
	}
}

