function open_small(url) {
	mywindow = window.open("http://oaklandbuilders.org/" + url, "small", "location=no,status=no,scrollbars=yes,resizable=yes,width=500,height=600");
}

function load_and_close(url) {
	window.opener.location = url;
	window.close();
}